multi-account-post-schedule.../node_modules/simple-update-notifier/build/index.d.ts
2022-07-07 18:23:44 +02:00

13 lines
321 B
TypeScript

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