diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-03-05 17:47:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 12:47:04 -0500 |
commit | 273777f7d9201de92b6f8c6f2f9579321165ec17 (patch) | |
tree | 2e325382337062ddc6408e2f76b19b5f68d4b4bd /cli/tsc | |
parent | c9c782940ea693664c462fb6f94d214ed54a158c (diff) |
fix(check): include dts files in tsc roots (#18026)
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index e3d0a75b9..ed0b00ca4 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -332,7 +332,7 @@ declare namespace Deno { * ``` * * Requires `allow-sys` permission. - * + * * On Windows there is no API available to retrieve this information and this method returns `[ 0, 0, 0 ]`. * * @tags allow-sys @@ -3481,7 +3481,7 @@ declare namespace Deno { * * ### Truncate part of the file * - * ``` + * ```ts * const file = await Deno.makeTempFile(); * await Deno.writeFile(file, new TextEncoder().encode("Hello World")); * await Deno.truncate(file, 7); @@ -4095,7 +4095,7 @@ declare namespace Deno { unref(): void; } - /** + /** * Options which can be set when calling {@linkcode Deno.Command}. * * @category Sub Process @@ -4159,7 +4159,7 @@ declare namespace Deno { windowsRawArguments?: boolean; } - /** + /** * @category Sub Process */ export interface CommandStatus { @@ -4172,7 +4172,7 @@ declare namespace Deno { signal: Signal | null; } - /** + /** * The interface returned from calling {@linkcode Command.output} or * {@linkcode Command.outputSync} which represents the result of spawning the * child process. @@ -4720,7 +4720,7 @@ declare namespace Deno { * * Then `Deno.args` will contain: * - * ``` + * ```ts * [ "/etc/passwd" ] * ``` * |