// Type definitions for update-notifier 6.0 // Project: https://github.com/yeoman/update-notifier // Definitions by: vvakame // Noah Chen // Jason Dreyzehner // Michael Grinich // Piotr Błażejewicz // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Minimum TypeScript Version: 4.1 import UpdateNotifier, { NotifyOptions, Package, Settings, UpdateInfo } from './update-notifier'; /** Checks if there is an available update */ export default function updateNotifier(settings?: Settings): UpdateNotifier; export type { NotifyOptions, Package, Settings, UpdateInfo };