fix(core): remove deprecated and defunct wtf* apis (#33949)

These apis have been deprecated in v8, so they should stick around till v10,
but since they are defunct we are removing them early so that they don't take up payload size.

PR Close #33949
This commit is contained in:
Igor Minar
2019-07-30 14:36:35 -07:00
committed by Matias Niemelä
parent 420750bd05
commit cf420194ed
8 changed files with 14 additions and 209 deletions

View File

@ -1443,20 +1443,3 @@ export declare class WrappedValue {
static unwrap(value: any): any;
static wrap(value: any): WrappedValue;
}
/** @deprecated */
export declare const wtfCreateScope: (signature: string, flags?: any) => WtfScopeFn;
/** @deprecated */
export declare const wtfEndTimeRange: (range: any) => void;
/** @deprecated */
export declare const wtfLeave: <T>(scope: any, returnValue?: T) => T;
/** @deprecated */
export interface WtfScopeFn {
(arg0?: any, arg1?: any): any;
}
/** @deprecated */
export declare const wtfStartTimeRange: (rangeType: string, action: string) => any;