UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

9 lines (8 loc) 393 B
import type { PromptbookStorage } from '../_common/PromptbookStorage'; import type { IndexedDbStorageOptions } from './utils/IndexedDbStorageOptions'; /** * Gets wrapper around IndexedDB which can be used as PromptbookStorage * * @public exported from `@promptbook/browser` */ export declare function getIndexedDbStorage<TItem>(options: IndexedDbStorageOptions): PromptbookStorage<TItem>;