mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
6661e7e287
This commit removes "location" global available on "window", "globalThis" and "self".
40 lines
874 B
TypeScript
40 lines
874 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { sendSync } from "./dispatch_json.ts";
|
|
|
|
export interface Start {
|
|
args: string[];
|
|
cwd: string;
|
|
debugFlag: boolean;
|
|
denoVersion: string;
|
|
noColor: boolean;
|
|
pid: number;
|
|
repl: boolean;
|
|
target: string;
|
|
tsVersion: string;
|
|
unstableFlag: boolean;
|
|
v8Version: string;
|
|
versionFlag: boolean;
|
|
}
|
|
|
|
export function opStart(): Start {
|
|
return sendSync("op_start");
|
|
}
|
|
|
|
export interface Metrics {
|
|
opsDispatched: number;
|
|
opsDispatchedSync: number;
|
|
opsDispatchedAsync: number;
|
|
opsDispatchedAsyncUnref: number;
|
|
opsCompleted: number;
|
|
opsCompletedSync: number;
|
|
opsCompletedAsync: number;
|
|
opsCompletedAsyncUnref: number;
|
|
bytesSentControl: number;
|
|
bytesSentData: number;
|
|
bytesReceived: number;
|
|
}
|
|
|
|
export function metrics(): Metrics {
|
|
return sendSync("op_metrics");
|
|
}
|