@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
15 lines (14 loc) • 322 B
TypeScript
import type { string_name } from '../../../types/string_name';
/**
* Options for IndexedDB storage
*/
export type IndexedDbStorageOptions = {
/**
* Name of the database
*/
databaseName: string_name;
/**
* Name of the object store (table) in the database
*/
storeName: string_name;
};