@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
15 lines (14 loc) • 322 B
TypeScript
import type { string_name } from '../../../types/typeAliases';
/**
* 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;
};