mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-06-08 00:04:53 +00:00
14 lines
342 B
TypeScript
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 };
|