3rd-cookie-check
Version:
Check if current browser is blocking 3rd party cookies or not
16 lines (15 loc) • 322 B
TypeScript
interface Result {
supported: boolean | null;
timeout?: boolean;
}
interface EventCode {
supported: string;
unsupported?: string;
}
interface Params {
timeout?: number;
eventCode?: EventCode;
iframeSrc?: string;
}
export default function cookieCheck(param: Params): Promise<Result>;
export {};