react-native-kochava-measurement
Version:
A lightweight and easy to integrate SDK, providing first-class integration with Kochava’s installation attribution and analytics platform.
9 lines (8 loc) • 364 B
TypeScript
import 'whatwg-fetch';
import { Payload } from "./payloads/payload";
export interface BaseResp {
success: string | number | boolean;
}
export declare const sendRequest: (payload: Payload, endpoint: string) => Promise<string>;
export declare const mockSuccess: () => string;
export declare const wasRespSuccess: (success: string | number | boolean) => boolean;