From f3a0e48d4ecb7624bb8c19f0588504cd6249089b Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Tue, 30 Aug 2022 13:16:56 +0200 Subject: fix(docs): add missing categories (#15684) --- cli/dts/lib.deno.ns.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'cli/dts/lib.deno.ns.d.ts') 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; }; - /** A handle for `stderr`. */ + /** A handle for `stderr`. + * + * @category I/O + */ export const stderr: Writer & WriterSync & Closer & { readonly rid: number; readonly writable: WritableStream; @@ -2145,6 +2148,7 @@ declare namespace Deno { */ export function realPath(path: string | URL): Promise; + /** @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; -- cgit v1.2.3