summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts12
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" ]
* ```
*