2022-10-27 03:45:07 +00: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 };