Skip to content

Commit ade12a8

Browse files
committed
chore: linting
1 parent 3cf6efd commit ade12a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/blockstore-fs/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ import path from 'node:path'
1717
import { promisify } from 'node:util'
1818
// @ts-expect-error no types
1919
import fwa from 'fast-write-atomic'
20+
import { OpenFailedError, type AwaitIterable, PutFailedError, NotFoundError, DeleteFailedError } from 'interface-store'
2021
import glob from 'it-glob'
2122
import map from 'it-map'
2223
import parallelBatch from 'it-parallel-batch'
2324
import { NextToLast } from './sharding.js'
2425
import type { ShardingStrategy } from './sharding.js'
2526
import type { Blockstore, Pair } from 'interface-blockstore'
26-
import { OpenFailedError, type AwaitIterable, PutFailedError, NotFoundError, DeleteFailedError } from 'interface-store'
2727
import type { CID } from 'multiformats/cid'
2828

2929
const writeAtomic = promisify(fwa)

packages/datastore-idb/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
* ```
1313
*/
1414

15-
import { DeleteFailedError, GetFailedError, NotFoundError, OpenFailedError, PutFailedError } from 'interface-store'
1615
import { BaseDatastore } from 'datastore-core'
1716
import { openDB, deleteDB, type IDBPDatabase } from 'idb'
1817
import { type Batch, Key, type KeyQuery, type Pair, type Query } from 'interface-datastore'
18+
import { DeleteFailedError, GetFailedError, NotFoundError, OpenFailedError, PutFailedError } from 'interface-store'
1919
import filter from 'it-filter'
2020
import sort from 'it-sort'
2121

0 commit comments

Comments
 (0)