diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-02-20 13:49:33 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 03:49:33 +0100 |
commit | 123653a01adfa0b07d3f202bc9a084738b4775fe (patch) | |
tree | c3be16bab1fed6d1804003e87e53fab897606d0d /cli/tsc | |
parent | ef43d51497dec1298d2104701c9a222efae9d69f (diff) |
chore: add missing `@category` tags to runtime APIs (#22486)
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index f2fc0cf3b..4285b65c7 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -125,6 +125,7 @@ declare namespace Deno { export type NativeTypedPointer<T extends PointerObject> = "pointer" & { [brand]: T; }; + /** @category FFI */ export type NativeTypedFunction<T extends UnsafeCallbackDefinition> = & "function" & { @@ -2247,7 +2248,9 @@ declare var WebSocketStream: { * @category Temporal */ declare namespace Temporal { + /** @category Temporal */ export type ComparisonResult = -1 | 0 | 1; + /** @category Temporal */ export type RoundingMode = | "ceil" | "floor" @@ -4243,6 +4246,7 @@ declare namespace Temporal { /** @category Intl */ declare namespace Intl { + /** @category Intl */ type Formattable = | Date | Temporal.Instant @@ -4253,6 +4257,7 @@ declare namespace Intl { | Temporal.PlainYearMonth | Temporal.PlainMonthDay; + /** @category Intl */ interface DateTimeFormatRangePart { source: "shared" | "startRange" | "endRange"; } |