diff options
| author | Luca Casonato <lucacasonato@yahoo.com> | 2020-04-30 17:23:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-30 11:23:40 -0400 |
| commit | 80e22111416751ce34dbc5cb32ffa9f293517370 (patch) | |
| tree | 5b3fe5d16ee07143e5dcb2c766a1f48c296ad9d6 /cli/js/ops | |
| parent | 4993a6504b4b447e0e02454094cffb02ee18c081 (diff) | |
Unstable methods should not appear in runtime or d.ts (#4957)
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Diffstat (limited to 'cli/js/ops')
| -rw-r--r-- | cli/js/ops/runtime.ts | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/cli/js/ops/runtime.ts b/cli/js/ops/runtime.ts index 247f0576d..a64c1f8f6 100644 --- a/cli/js/ops/runtime.ts +++ b/cli/js/ops/runtime.ts @@ -3,20 +3,19 @@ import { sendSync } from "./dispatch_json.ts"; export interface Start { - cwd: string; - pid: number; args: string[]; - location: string; // Absolute URL. - repl: boolean; + cwd: string; debugFlag: boolean; - depsFlag: boolean; - typesFlag: boolean; - versionFlag: boolean; denoVersion: string; - v8Version: string; - tsVersion: string; + location: string; // Absolute URL. noColor: boolean; + pid: number; + repl: boolean; target: string; + tsVersion: string; + unstableFlag: boolean; + v8Version: string; + versionFlag: boolean; } export function opStart(): Start { |
