Skip to content

Commit a34dfe6

Browse files
committed
refactor: remove type exports
1 parent 04cb33b commit a34dfe6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package/src/DatabaseQueue.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import NitroSQLiteError from './NitroSQLiteError'
22

3-
export interface QueuedOperation {
3+
interface QueuedOperation {
44
/**
55
* Starts the operation
66
*/
77
start: () => void
88
}
99

10-
export type DatabaseQueue = {
10+
type DatabaseQueue = {
1111
queue: QueuedOperation[]
1212
inProgress: boolean
1313
}

0 commit comments

Comments
 (0)