Skip to content

Commit 4bf3600

Browse files
committed
🐛 fix(plugin-help): types
1 parent 498b1ab commit 4bf3600

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/plugin-help/src/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import textTable from "text-table";
22
import stringWidth from "string-width";
33

4-
export const table = (...items: string[][]) => textTable(items, { stringLength: stringWidth });
4+
export const table = (items: string[][]) => textTable(items, { stringLength: stringWidth });
55

6-
export const splitTable = (...items: string[][]) => {
7-
return table(...items).split("\n");
6+
export const splitTable = (items: string[][]) => {
7+
return table(items).split("\n");
88
};
99

1010
const primitiveMap = new Map<any, string>([

0 commit comments

Comments
 (0)