diff --git a/src/inspect/ii.ts b/src/inspect/ii.ts index 2e01f62..3c14ffa 100644 --- a/src/inspect/ii.ts +++ b/src/inspect/ii.ts @@ -6,6 +6,7 @@ export default ii; export interface InspectInspect { (value: T, ...args: unknown[]): T; + (...args: T[]): T; defaults: ConsoleInspectOptions; depth: (depth: number) => InspectInspect; d: (depth: number) => InspectInspect; diff --git a/src/inspect/tt.ts b/src/inspect/tt.ts index d024458..c744d23 100644 --- a/src/inspect/tt.ts +++ b/src/inspect/tt.ts @@ -11,6 +11,7 @@ export default tt; export interface TableTable { (value: T, ...args: unknown[]): T; + (...args: T[]): T; defaults: ConsoleTableOptions; pre: ((value: unknown) => unknown) | undefined; }