diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-08-30 13:16:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 13:16:56 +0200 |
commit | f3a0e48d4ecb7624bb8c19f0588504cd6249089b (patch) | |
tree | 026da738044c658e248a3ba59f44a005533ca9d1 /cli/dts/lib.deno.ns.d.ts | |
parent | a7558196a7c01bd273b05a3e2180f0f219de81b4 (diff) |
fix(docs): add missing categories (#15684)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 841d92a61..30520191d 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -1338,7 +1338,10 @@ declare namespace Deno { readonly rid: number; readonly writable: WritableStream<Uint8Array>; }; - /** A handle for `stderr`. */ + /** A handle for `stderr`. + * + * @category I/O + */ export const stderr: Writer & WriterSync & Closer & { readonly rid: number; readonly writable: WritableStream<Uint8Array>; @@ -2145,6 +2148,7 @@ declare namespace Deno { */ export function realPath(path: string | URL): Promise<string>; + /** @category File System */ export interface DirEntry { name: string; isFile: boolean; @@ -2760,6 +2764,7 @@ declare namespace Deno { handler: () => void, ): void; + /** @category Sub Process */ export type ProcessStatus = | { success: true; |