@plasmohq/storage
Version:
Safely and securely store data and share them across your extension and websites
19 lines (16 loc) • 654 B
TypeScript
import { Storage } from './index.js';
declare const table: ({ storage, printer }: {
storage?: Storage | undefined;
printer?: {
(tabularData?: any, properties?: string[] | undefined): void;
(tabularData: any, properties?: readonly string[] | undefined): void;
} | undefined;
}) => Promise<void>;
declare const startChangeReporter: ({ storage, printer }: {
storage?: Storage | undefined;
printer?: {
(tabularData?: any, properties?: string[] | undefined): void;
(tabularData: any, properties?: readonly string[] | undefined): void;
} | undefined;
}) => void;
export { startChangeReporter, table };