File "index.d.ts"

Full Path: C:/wamp64/www/Seleccion/node_modules/simple-update-notifier/build/index.d.ts
File size: 342 bytes
MIME-type: text/plain
Charset: utf-8

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 };