@alloyidentity/web-sdk
Version:
Alloy Web Document SDK
18 lines (17 loc) • 488 B
TypeScript
interface CdApi {
setCustomerSessionId: (sessionId: string) => void;
changeContext: (contextString: string) => void;
setCustomerBrand: (brand: string) => void;
}
interface BcClient {
start: (wupUrl: string, cid: string, csid: string, clientConfig: any) => void;
changeContext: (contextString: string) => void;
setCustomerBrand: (brand: string) => void;
}
declare global {
interface Window {
cdApi: CdApi;
bcClient: BcClient;
}
}
export {};