opusdev/vector-similarity-api
1
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 