@clerc/plugin-not-found
Version:
Clerc plugin not found (did you mean)
16 lines (15 loc) • 361 B
text/typescript
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 };