mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-05-01 11:32:28 +00:00
13 lines
321 B
TypeScript
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 };
|