mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
15 lines
422 B
TypeScript
15 lines
422 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
/// <reference no-default-lib="true" />
|
|
/// <reference lib="esnext" />
|
|
|
|
declare module "ext:deno_console/01_console.js" {
|
|
function privateInspect<TObject>(
|
|
object: TObject,
|
|
keys: (keyof TObject)[],
|
|
// deno-lint-ignore no-explicit-any
|
|
inspect: any,
|
|
// deno-lint-ignore no-explicit-any
|
|
inspectOptions: any,
|
|
): string;
|
|
}
|