@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
9 lines (8 loc) • 425 B
TypeScript
import type { PromptbookStorage } from '../../_common/PromptbookStorage';
import type { IndexedDbStorageOptions } from './IndexedDbStorageOptions';
/**
* Creates a PromptbookStorage backed by IndexedDB.
* Uses a single object store named 'promptbook'.
* @private for `getIndexedDbStorage`
*/
export declare function makePromptbookStorageFromIndexedDb<TValue>(options: IndexedDbStorageOptions): PromptbookStorage<TValue>;