This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Web-Dev-Old/nodeJS/Learning/01/node_modules/simple-update-notifier/build/index.d.ts
2024-11-27 15:08:17 +00:00

14 lines
342 B
TypeScript

interface IUpdate {
pkg: {
name: string;
version: string;
};
updateCheckInterval?: number;
shouldNotifyInNpmScript?: boolean;
distTag?: string;
alwaysRun?: boolean;
debug?: boolean;
}
declare const simpleUpdateNotifier: (args: IUpdate) => Promise<void>;
export { simpleUpdateNotifier as default };