Redefine performanceData

This commit is contained in:
Matt Bierner 2020-02-03 14:31:21 -08:00
parent 7c502bbb6a
commit 3f5fda1800

View file

@ -1,2 +1,11 @@
import * as Proto from 'typescript/lib/protocol';
export = Proto;
declare module "typescript/lib/protocol" {
// TODO: Remove this hardcoded type once we update to TS 3.8+ that brings in the proper types
interface Response {
performanceData?: {
updateGraphDurationMs?: number;
}
}
}