diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-05-06 19:54:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 13:54:13 +0200 |
commit | ce76f8c3a97529c86d49c39c6d9a250f978b5430 (patch) | |
tree | 30b68e15ca1a357d0bef31d2e530aab365a7ad04 | |
parent | 7e229878761638592e28c6c99698320912501100 (diff) |
docs: tag permission examples as ts (#10506)
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 76d90b10d..14c7a36dd 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1220,7 +1220,7 @@ declare namespace Deno { * * Examples: * - * ``` + * ```ts * Deno.test({ * name: "inherit", * permissions: { @@ -1233,7 +1233,7 @@ declare namespace Deno { * }; * ``` * - * ``` + * ```ts * Deno.test({ * name: "true", * permissions: { @@ -1246,7 +1246,7 @@ declare namespace Deno { * }; * ``` * - * ``` + * ```ts * Deno.test({ * name: "false", * permissions: { |