UNPKG

@posthog/types

Version:

Type definitions for the PostHog JavaScript SDK

12 lines 300 B
/** * Request-related types */ export type Headers = Record<string, string>; export interface RequestResponse { statusCode: number; text?: string; json?: any; error?: unknown; } export type RequestCallback = (response: RequestResponse) => void; //# sourceMappingURL=request.d.ts.map