@embrace-io/react-native
Version:
A React Native wrapper for the Embrace SDK
8 lines (7 loc) • 388 B
TypeScript
import { NETWORK_INTERCEPTOR_TYPES, NETWORK_SDK_INTERCEPTORS } from "../interfaces/NetworkMonitoring";
interface IIntercerptorStrategy {
applyInterceptor: (interceptor: NETWORK_INTERCEPTOR_TYPES) => void;
}
type APPLY_INTERCEPTOR_STRATEGY = Record<NETWORK_SDK_INTERCEPTORS, IIntercerptorStrategy>;
export declare const ApplyInterceptorStrategy: APPLY_INTERCEPTOR_STRATEGY;
export {};