UNPKG

@alloyidentity/web-sdk

Version:

Alloy Web Document SDK

12 lines (11 loc) 266 B
interface CdApi { setCustomerSessionId: (sessionId: string) => void; changeContext: (contextString: string) => void; setCustomerBrand: (brand: string) => void; } declare global { interface Window { cdApi: CdApi; } } export {};