(store: IDBObjectStore)
| 50 | } |
| 51 | |
| 52 | function keys(store: IDBObjectStore): Promise<number[]> { |
| 53 | return promisifyRequest(store.getAllKeys() as IDBRequest<number[]>); |
| 54 | } |
| 55 | |
| 56 | /** Insert into the end of the store */ |
| 57 | export function push(store: Store, value: Uint8Array | string, maxQueueSize: number): Promise<void> { |
no test coverage detected