@posthog/types
Version:
Type definitions for the PostHog JavaScript SDK
10 lines • 325 B
TypeScript
/**
* Common types shared across PostHog SDKs
*/
export type Property = any;
export type Properties = Record<string, Property>;
export type JsonRecord = {
[key: string]: JsonType;
};
export type JsonType = string | number | boolean | null | undefined | JsonRecord | Array<JsonType>;
//# sourceMappingURL=common.d.ts.map