10 lines
198 B
TypeScript
Raw Normal View History

import { DBSchema } from 'idb'
import { CachedMetadataEvent } from '../../types'
export interface SchemaV1 extends DBSchema {
userMetadata: {
key: string
value: CachedMetadataEvent
}
}