chex-storage
Version:
A wrapper library for Chrome extension storage local - the standard storage in the chrome extension.
12 lines (11 loc) • 404 B
TypeScript
import ChexStorageProvider, { ChexStorageConfig } from "./provider";
declare class ChexDatabaseWeb extends ChexStorageProvider {
databaseName: string;
constructor(databaseName: string, extensionId: string, initData?: {
[key: string]: any[];
}, config?: ChexStorageConfig);
tables(tables: {
[table: string]: string;
}): Promise<void>;
}
export default ChexDatabaseWeb;