@codesnippets/codesnippets
Version:
Open source code snippets and examples.
11 lines (10 loc) • 363 B
TypeScript
/**
* Sends whether or not the current snippet installation is up-to-date to the callback.
* @param callback the callback
*/
export declare function isUpToDate(callback: (err: any, res: any) => any): void;
/**
* Returns whether or not the current lockfile is up to date.
* @returns the result
*/
export declare function isUpToDateSync(): boolean;