diff options
author | Elias Sjögreen <eliassjogreen1@gmail.com> | 2021-05-10 22:12:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 16:12:42 -0400 |
commit | f12b82e183d1af75d434938f248fd81781c2ab50 (patch) | |
tree | dabd2c833065d0da2268c5355b0777d7c89ca5f6 /cli/dts/lib.deno.ns.d.ts | |
parent | ce48b32979b007c35130321ed0f91d8ffdb6d593 (diff) |
fix(cli): typings for `Deno.os.arch` (#10541)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 9841350d3..664fcd5a4 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -2285,7 +2285,7 @@ declare namespace Deno { /** The LLVM target triple */ target: string; /** Instruction set architecture */ - arch: "x86_64"; + arch: "x86_64" | "aarch64"; /** Operating system */ os: "darwin" | "linux" | "windows"; /** Computer vendor */ |