diff options
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 12e8ae4ba..b5a469f0b 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -248,7 +248,7 @@ declare namespace Deno { /** UNSTABLE: might move to Deno.symbols */ export const EOF: unique symbol; - /** UNSTABLE: might move to Deno.symbols */ + /** UNSTABLE: might move to Deno.symbols */ export type EOF = typeof EOF; /** UNSTABLE: maybe remove "SEEK_" prefix. Maybe capitalization wrong. */ @@ -1917,6 +1917,10 @@ declare namespace Deno { * Does not apply to `"esnext"` target. */ useDefineForClassFields?: boolean; + /** List of library files to be included in the compilation. If omitted, + * then the Deno main runtime libs are used. */ + lib?: string[]; + /** The locale to use to show error messages. */ locale?: string; |