diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-03 19:07:19 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 09:07:19 +0000 |
commit | 1a82b0f8086133053c558084c567a0403c2708e9 (patch) | |
tree | 51c7df89951dce957cbc8c48a160f8527ead2143 /cli/tsc/dts/lib.deno.ns.d.ts | |
parent | 71e4ac774bc18902a0d23f29d9b18b43b19bbbf2 (diff) |
BREAKING(console): remove `Deno.customInspect` (#25348)
Note: this is implemented on Deploy. However, according to @magurotuna,
a thin compatibility layer might be in the works that'd prevent
breakages for PRs such as this one.
Towards #22079
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 8d9384580..40e065389 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -5216,19 +5216,6 @@ declare namespace Deno { */ export const args: string[]; - /** - * A symbol which can be used as a key for a custom method which will be - * called when `Deno.inspect()` is called, or when the object is logged to - * the console. - * - * @deprecated This will be removed in Deno 2.0. See the - * {@link https://docs.deno.com/runtime/manual/advanced/migrate_deprecations | Deno 1.x to 2.x Migration Guide} - * for migration instructions. - * - * @category I/O - */ - export const customInspect: unique symbol; - /** The URL of the entrypoint module entered from the command-line. It * requires read permission to the CWD. * |