diff options
-rw-r--r-- | packages/bun-types/bun.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-types/bun.d.ts b/packages/bun-types/bun.d.ts index e5eaf1674..7ad0f912e 100644 --- a/packages/bun-types/bun.d.ts +++ b/packages/bun-types/bun.d.ts @@ -2308,7 +2308,7 @@ declare module "bun" { * * @param args */ - export function inspect(arg: any, options: BunInspectOptions): string; + export function inspect(arg: any, options?: BunInspectOptions): string; export namespace inspect { /** * That can be used to declare custom inspect functions. |