mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
fix(docs): add missing categories (#15684)
This commit is contained in:
parent
a7558196a7
commit
f3a0e48d4e
4 changed files with 9 additions and 1 deletions
7
cli/dts/lib.deno.ns.d.ts
vendored
7
cli/dts/lib.deno.ns.d.ts
vendored
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue