summaryrefslogtreecommitdiff
path: root/cli/js/ts_global.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/ts_global.d.ts')
-rw-r--r--cli/js/ts_global.d.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/js/ts_global.d.ts b/cli/js/ts_global.d.ts
index bca602998..dcdf4a3e4 100644
--- a/cli/js/ts_global.d.ts
+++ b/cli/js/ts_global.d.ts
@@ -24,5 +24,10 @@ declare global {
// there is a risk these could change in future versions of TypeScript
export const libs: string[];
export const libMap: Map<string, string>;
+ export const performance: {
+ enable(): void;
+ disable(): void;
+ getDuration(value: string): number;
+ };
}
}