// Type definitions for Mozilla's localForage // Project: https://github.com/mozilla/localforage // Definitions by: yuichi david pichsenmeister // Definitions: https://github.com/borisyankov/DefinitelyTyped /// interface LocalForageOptions { driver?: string | LocalForageDriver | LocalForageDriver[]; name?: string; size?: number; storeName?: string; version?: string; description?: string; } interface LocalForageDriver { _driver: string; _initStorage(options: LocalForageOptions): void; _support: boolean | Promise; clear(callback: (err: any) => void): void; getItem(key: string, callback: (err: any, value: any) => void): void; key(keyIndex: number, callback: (err: any, key: string) => void): void; keys(callback: (err: any, keys: string[]) => void): void; length(callback: (err: any, numberOfKeys: number) => void): void; removeItem(key: string, callback: (err: any) => void): void; setItem(key: string, value: any, callback: (err: any, value: any) => void): void; } interface LocalForage { LOCALSTORAGE: string; WEBSQL: string; INDEXEDDB: string; /** * Set and persist localForage options. This must be called before any other calls to localForage are made, but can be called after localForage is loaded. * If you set any config values with this method they will persist after driver changes, so you can call config() then setDriver() * @param {ILocalForageConfig} options? */ config(options: LocalForageOptions): boolean; createInstance(options: LocalForageOptions): LocalForage; driver(): LocalForageDriver; /** * Force usage of a particular driver or drivers, if available. * @param {string} driver */ setDriver(driver: string | string[]): Promise; setDriver(driver: string | string[], callback: () => void, errorCallback: (error: any) => void): void; defineDriver(driver: LocalForageDriver): Promise; defineDriver(driver: LocalForageDriver, callback: () => void, errorCallback: (error: any) => void): void; getItem(key: string): Promise; getItem(key: string, callback: (err: any, value: T) => void): void; setItem(key: string, value: T): Promise; setItem(key: string, value: T, callback: (err: any, value: T) => void): void; removeItem(key: string): Promise; removeItem(key: string, callback: (err: any) => void): void; clear(): Promise; clear(callback: (err: any) => void): void; length(): Promise; length(callback: (err: any, numberOfKeys: number) => void): void; key(keyIndex: number): Promise; key(keyIndex: number, callback: (err: any, key: string) => void): void; keys(): Promise; keys(callback: (err: any, keys: string[]) => void): void; iterate(iteratee: (value: any, key: string, iterationNumber: number) => any): Promise; iterate(iteratee: (value: any, key: string, iterationNumber: number) => any, callback: (err: any, result: any) => void): void; } declare module "localforage" { var localforage: LocalForage; export default localforage; }