From e5c04cc1662177947474ed3ee01877714895ca0b Mon Sep 17 00:00:00 2001 From: Phil Hawksworth Date: Thu, 13 Feb 2025 12:33:13 +0000 Subject: [PATCH] fmt --- cli/tsc/dts/lib.deno.shared_globals.d.ts | 26 ++++++++++++------------ ext/console/lib.deno_console.d.ts | 4 ++-- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/cli/tsc/dts/lib.deno.shared_globals.d.ts b/cli/tsc/dts/lib.deno.shared_globals.d.ts index 4ce3142e7a..9fae97393f 100644 --- a/cli/tsc/dts/lib.deno.shared_globals.d.ts +++ b/cli/tsc/dts/lib.deno.shared_globals.d.ts @@ -462,19 +462,19 @@ type BufferSource = ArrayBufferView | ArrayBuffer; * A global console object that provides methods for logging, debugging, and error reporting. * The console object provides access to the browser's or runtime's debugging console functionality. * It allows developers to output text and data for debugging purposes. -* -* @example -* ```typescript -* console.log("Hello, world!"); -* console.error("An error occurred"); -* console.warn("Warning message"); -* console.debug("Debug information"); -* ``` -* -* @see https://developer.mozilla.org/en-US/docs/Web/API/console -* -* @category I/O -*/ + * + * @example + * ```typescript + * console.log("Hello, world!"); + * console.error("An error occurred"); + * console.warn("Warning message"); + * console.debug("Debug information"); + * ``` + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/console + * + * @category I/O + */ declare var console: Console; /** @category Events */ diff --git a/ext/console/lib.deno_console.d.ts b/ext/console/lib.deno_console.d.ts index 882656dbaf..bb60bf52c4 100644 --- a/ext/console/lib.deno_console.d.ts +++ b/ext/console/lib.deno_console.d.ts @@ -10,9 +10,9 @@ * as well as other utility methods for debugging and inspecting code. * Methods include logging, debugging, and timing functionality. * @see https://developer.mozilla.org/en-US/docs/Web/API/console - * + * * @category I/O -*/ + */ interface Console { /** * Tests that an expression is true. If not, logs an error message