Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
import { getBucket } from './bucket'
import { Bucket, getBucket } from './bucket'

type Storage = {
local: Bucket<Record<string, any>>,
sync: Bucket<Record<string, any>>,
managed: Bucket<Record<string, any>>,
}

class StorageImpl implements Storage {
get local(): Bucket<Record<string, any>> { return getBucket<Record<string, any>>('local', 'local') }
get sync(): Bucket<Record<string, any>> { return getBucket<Record<string, any>>('sync', 'sync') }
get managed(): Bucket<Record<string, any>> { return getBucket<Record<string, any>>('managed', 'managed') }
}

/**
* Buckets for each storage area.
*/
export const storage = {
local: getBucket<Record<string, any>>('local', 'local'),
sync: getBucket<Record<string, any>>('sync', 'sync'),
managed: getBucket<Record<string, any>>('managed', 'managed'),
}
export const storage: Storage = new StorageImpl()

// Workaround for @rollup/plugin-typescript
export * from './types'
Expand Down