CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
index.d.ts14 linesDownload Raw Back to build
1interface IUpdate {2    pkg: {3        name: string;4        version: string;5    };6    updateCheckInterval?: number;7    shouldNotifyInNpmScript?: boolean;8    distTag?: string;9    alwaysRun?: boolean;10    debug?: boolean;11}12declare const simpleUpdateNotifier: (args: IUpdate) => Promise<void>;13export { simpleUpdateNotifier as default };14