blob: 94e7b22efbe8382ccb1e620aee3c843b4ff186f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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>;
|