1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/ext/console/internal.d.ts
Marvin Hagemeister cff57aeb10 WIP
2024-08-16 16:28:16 +02:00

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;
}