From 4e3ee84c877819234dab85dfefe81087f4fa2ffa Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 28 Aug 2025 11:25:28 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/bun-types/bun.d.ts | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/packages/bun-types/bun.d.ts b/packages/bun-types/bun.d.ts index a1de25c962..59b94114ff 100644 --- a/packages/bun-types/bun.d.ts +++ b/packages/bun-types/bun.d.ts @@ -644,12 +644,12 @@ declare module "bun" { * console.log(TOML.stringify(obj)); * // Output: * // title = "TOML Example" - * // + * // * // [database] * // server = "192.168.1.1" * // ports = [ - * // 8001, - * // 8001, + * // 8001, + * // 8001, * // 8002 * // ] * // connection_max = 5000 @@ -675,11 +675,7 @@ declare module "bun" { * TOML.stringify(obj, null, "\t"); // tab indentation * ``` */ - export function stringify( - value: any, - replacer: undefined | null, - space: string | number, - ): string; + export function stringify(value: any, replacer: undefined | null, space: string | number): string; /** * Convert a JavaScript object to a TOML string with advanced TOML-specific options. @@ -694,8 +690,8 @@ declare module "bun" { * @example * ```ts * // Advanced TOML-specific options - * TOML.stringify(obj, null, { - * inlineTables: true + * TOML.stringify(obj, null, { + * inlineTables: true * }); * ``` */ @@ -706,17 +702,17 @@ declare module "bun" { /** * Whether to format objects as inline tables instead of separate [table] sections * @default false - * + * * @example * ```ts * const obj = { server: { host: "localhost", port: 3000 } }; - * + * * // With inlineTables: false (default) * // [server] * // host = "localhost" * // port = 3000 - * - * // With inlineTables: true + * + * // With inlineTables: true * // server = { host = "localhost", port = 3000 } * ``` */