File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ namespace ts {
3232
3333 export interface PerformanceObserver {
3434 disconnect ( ) : void ;
35- observe ( options : { entryTypes : readonly string [ ] } ) : void ;
35+ observe ( options : { entryTypes : readonly ( "mark" | "measure" ) [ ] } ) : void ;
3636 }
3737
3838 export type PerformanceObserverConstructor = new ( callback : ( list : PerformanceObserverEntryList , observer : PerformanceObserver ) => void ) => PerformanceObserver ;
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ namespace ts.server {
256256 /* eslint-enable no-restricted-globals */
257257
258258 if ( typeof global !== "undefined" && global . gc ) {
259- sys . gc = ( ) => global . gc ( ) ;
259+ sys . gc = ( ) => global . gc ! ( ) ;
260260 }
261261
262262 sys . require = ( initialDir : string , moduleName : string ) : RequireResult => {
You can’t perform that action at this time.
0 commit comments