We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656512f commit 6e9883fCopy full SHA for 6e9883f
deps.ts
@@ -6,4 +6,10 @@ export type {
6
Context,
7
Dispatcher,
8
} from "https://deno.land/x/denops_core@v0.13.0/mod.ts";
9
-export { Denops } from "https://deno.land/x/denops_core@v0.13.0/mod.ts";
+export {
10
+ Denops,
11
+ ensureArray,
12
+ ensureNumber,
13
+ ensureRecord,
14
+ ensureString,
15
+} from "https://deno.land/x/denops_core@v0.13.0/mod.ts";
mod.ts
@@ -1,5 +1,14 @@
1
export { Vim } from "./vim/mod.ts";
2
export { main } from "./main.ts";
3
4
+// Re-export
5
+} from "./deps.ts";
+
// Deprecated APIs
export { start } from "./vim/mod.ts";
0 commit comments