UNPKG

@clerc/plugin-not-found

Version:
16 lines (15 loc) 361 B
import { Plugin } from "@clerc/core"; //#region src/index.d.ts interface NotFoundPluginOptions { /** * Distance threshold for suggesting commands. * * @default 5 */ distanceThreshold?: number; } declare const notFoundPlugin: ({ distanceThreshold }?: NotFoundPluginOptions) => Plugin; //#endregion export { NotFoundPluginOptions, notFoundPlugin };