This commit is contained in:
NikolajDanger
2023-01-04 13:32:54 +01:00
parent 27bd644a94
commit f9a0c044c0
287 changed files with 28448 additions and 0 deletions

View File

@ -0,0 +1,13 @@
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 };