UNPKG

fluxai-sdk

Version:

FluxAI JavaScript SDK for A/B experiment routing

10 lines (9 loc) 258 B
interface ShouldEnterParams { experiment: string; userId: string; attributes?: Record<string, any>; } export declare function routecheck({ experiment, userId, attributes, }: ShouldEnterParams): Promise<{ allow: boolean | null; }>; export {};