@clerc/plugin-completions 1.0.0-beta.23 → 1.0.0-beta.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -9
- package/dist/index.js +1548 -115
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -16,13 +16,6 @@ declare module "@clerc/core" {
|
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Whether to register the `completions install` and `completions uninstall` commands.
|
|
22
|
-
* @default true
|
|
23
|
-
*/
|
|
24
|
-
managementCommands?: boolean;
|
|
25
|
-
}
|
|
26
|
-
declare const completionsPlugin: (options?: CompletionsPluginOptions) => Plugin;
|
|
19
|
+
declare const completionsPlugin: () => Plugin;
|
|
27
20
|
//#endregion
|
|
28
|
-
export {
|
|
21
|
+
export { completionsPlugin };
|