UNPKG

@visulima/cerebro

Version:

A delightful toolkit for building cross-runtime CLIs for Node.js, Deno, and Bun.

10 lines (9 loc) 478 B
import type { Plugin } from "../../types/plugin.d.ts"; import type { UpdateNotifierOptions } from "./has-new-version.d.ts"; export type UpdateNotifierPluginOptions = Partial<Omit<UpdateNotifierOptions, "debug" | "pkg">>; /** * Create an update notifier plugin that checks for package updates. * @param options Update notifier configuration options. * @returns Plugin instance. */ export declare const updateNotifierPlugin: (options?: UpdateNotifierPluginOptions) => Plugin;