Description
At the moment ReactNativeTracingOptions has multiple options to set some sort of time range. These options are in different time unit and they don't have post fix which would suggest the unit.
@deprecated
idleTimeout: number;
@deprecated
maxTransactionDuration: number;
idleTimeoutMs: number;
maxTransactionDurationMs: number;
To not introduce breaking change, when the deprecated options are used they will set their new counterparts which will be used further in the code.
Description
At the moment
ReactNativeTracingOptionshas multiple options to set some sort of time range. These options are in different time unit and they don't have post fix which would suggest the unit.To not introduce breaking change, when the deprecated options are used they will set their new counterparts which will be used further in the code.