1 | import UpdateNotifier, { NotifyOptions, Package, Settings, UpdateInfo } from "./update-notifier.js";
|
2 |
|
3 | /** Checks if there is an available update */
|
4 | export default function updateNotifier(settings?: Settings): UpdateNotifier;
|
5 |
|
6 | export type { NotifyOptions, Package, Settings, UpdateInfo, UpdateNotifier };
|