We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b37901 commit 766191fCopy full SHA for 766191f
1 file changed
sdk/utils/src/terminal/table.ts
@@ -1,5 +1,4 @@
1
import { Table } from "console-table-printer";
2
-import type { Dictionary } from "console-table-printer/dist/src/models/common.js";
3
import { whiteBright } from "yoctocolors";
4
import { camelCaseToWords } from "@/string.js";
5
import { note } from "./note.js";
@@ -19,7 +18,7 @@ import { shouldPrint } from "./should-print.js";
19
18
*
20
* table("My Table", data);
21
*/
22
-export function table(title: string, data: Dictionary[]): void {
+export function table(title: string, data: unknown[]): void {
23
if (!shouldPrint()) {
24
return;
25
}
0 commit comments