Skip to content

Commit

Permalink
🐛 allow for spread operator use
Browse files Browse the repository at this point in the history
  • Loading branch information
astoilkov committed Jan 13, 2025
1 parent 09b43b0 commit ee5ff0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/inspect/ii.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default ii;

export interface InspectInspect {
<T>(value: T, ...args: unknown[]): T;
<T>(...args: T[]): T;
defaults: ConsoleInspectOptions;
depth: (depth: number) => InspectInspect;
d: (depth: number) => InspectInspect;
Expand Down
1 change: 1 addition & 0 deletions src/inspect/tt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export default tt;

export interface TableTable {
<T>(value: T, ...args: unknown[]): T;
<T = unknown>(...args: T[]): T;
defaults: ConsoleTableOptions;
pre: ((value: unknown) => unknown) | undefined;
}
Expand Down

0 comments on commit ee5ff0f

Please sign in to comment.