index.d.ts 667 B

1234567891011121314
  1. import { bufferToString, deserialize, serialize, stringToBuffer } from './serialiser';
  2. export { clone } from './clone';
  3. export { getKeyPrefix } from './getKeyPrefix';
  4. export { executeCallback } from './executeCallback';
  5. export { LocalForageDbInstanceOptions, LocalForageOptions } from './types';
  6. export { getCallback } from './getCallback';
  7. export { dropInstanceCommon, DropInstanceCommonOutput } from './dropInstanceCommon';
  8. export { normaliseKey } from './normaliseKey';
  9. export declare const serialiser: {
  10. bufferToString: typeof bufferToString;
  11. deserialize: typeof deserialize;
  12. serialize: typeof serialize;
  13. stringToBuffer: typeof stringToBuffer;
  14. };