add api/node_modules

This commit is contained in:
2025-02-27 17:37:49 +08:00
parent 499d157145
commit 71554afae8
957 changed files with 109182 additions and 1 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 };