blob: 94e7b22efbe8382ccb1e620aee3c843b4ff186f2 (
plain) (
tree)
|
|
export interface GetTokenOptions {
pkey: string;
surl?: string;
data?: {
[key: string]: string;
};
headers?: {
[key: string]: string;
};
site?: string;
location?: string;
proxy?: string;
language?: string;
}
export interface GetTokenResult {
challenge_url: string;
challenge_url_cdn: string;
challenge_url_cdn_sri: string;
disable_default_styling: boolean | null;
iframe_height: number | null;
iframe_width: number | null;
kbio: boolean;
mbio: boolean;
noscript: string;
tbio: boolean;
token: string;
}
export declare function getToken(options: GetTokenOptions): Promise<GetTokenResult>;
|