mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
45 lines
2.0 KiB
TypeScript
45 lines
2.0 KiB
TypeScript
// Type definitions for node-persist
|
|
// Project: https://github.com/simonlast/node-persist
|
|
// Definitions by: Spencer Williams <http://spencerwi.com/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
/// <reference path="../q/Q.d.ts" />
|
|
|
|
declare module "node-persist" {
|
|
type milliseconds = number;
|
|
module NodePersist {
|
|
export interface InitOptions {
|
|
dir?: string;
|
|
stringify?: (toSerialize: any)=>string;
|
|
parse?: (serialized: string)=>any;
|
|
encoding?: string;
|
|
logging?: boolean|Function;
|
|
continuous?: boolean;
|
|
interval?: milliseconds|boolean;
|
|
ttl?: milliseconds|boolean;
|
|
}
|
|
export function init(options?: InitOptions, callback?: Function): Q.Promise<any>;
|
|
export function initSync(options?: InitOptions): void;
|
|
export function getItem(key: string, callback?: (err: any, value: any)=>any): Q.Promise<any>;
|
|
export function getItemSync(key: string): any;
|
|
export function setItem(key: string, value: any, callback?: (err: any)=>any): Q.Promise<any>;
|
|
export function setItemSync(key: string, value: any): void;
|
|
export function removeItem(key: string, callback?: (err: any)=>any): Q.Promise<any>;
|
|
export function removeItemSync(key: string): void;
|
|
export function clear(callback?: (err: any)=>any): Q.Promise<any>;
|
|
export function clearSync(): void;
|
|
export function values(): Array<any>;
|
|
export function valuesWithKeyMatch(match: string): Array<any>;
|
|
export function keys(): Array<string>;
|
|
export function length(): number;
|
|
export function forEach(callback: (key: string, value: any)=>void): void;
|
|
|
|
export function persist(callback?: (err: any)=>any): Q.Promise<any>;
|
|
export function persistSync(): void;
|
|
export function persistKey(key: string, callback?: (err: any)=>any): Q.Promise<any>;
|
|
export function persistKeySync(key: string): void;
|
|
}
|
|
export = NodePersist;
|
|
}
|