File tree 2 files changed +13
-2
lines changed
tests/baselines/reference/api
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -237,11 +237,12 @@ namespace ts.server.protocol {
237
237
*/
238
238
metadata ?: unknown ;
239
239
240
- /* @internal */
240
+ /**
241
+ * Exposes information about the performance of this request-response pair.
242
+ */
241
243
performanceData ?: PerformanceData ;
242
244
}
243
245
244
- /* @internal */
245
246
export interface PerformanceData {
246
247
/**
247
248
* Time spent updating the program graph, in milliseconds.
Original file line number Diff line number Diff line change @@ -6253,6 +6253,16 @@ declare namespace ts.server.protocol {
6253
6253
* Contains extra information that plugin can include to be passed on
6254
6254
*/
6255
6255
metadata ?: unknown ;
6256
+ /**
6257
+ * Exposes information about the performance of this request-response pair.
6258
+ */
6259
+ performanceData ?: PerformanceData ;
6260
+ }
6261
+ interface PerformanceData {
6262
+ /**
6263
+ * Time spent updating the program graph, in milliseconds.
6264
+ */
6265
+ updateGraphDurationMs ?: number ;
6256
6266
}
6257
6267
/**
6258
6268
* Arguments for FileRequest messages.
You can’t perform that action at this time.
0 commit comments