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:

committed by
Matias Niemelä

parent
420750bd05
commit
cf420194ed
17
tools/public_api_guard/core/core.d.ts
vendored
17
tools/public_api_guard/core/core.d.ts
vendored
@ -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;
|
||||
|
Reference in New Issue
Block a user