We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee917f0 commit d1e7182Copy full SHA for d1e7182
src/types/index.d.ts
@@ -32,8 +32,10 @@ export interface IdOptions extends Record<string, any> {
32
cookie_days_to_live?: number;
33
on_node?: boolean;
34
session_is_new?: boolean;
35
- client_id_storage_location?: string;
36
- session_id_storage_location?: string;
+ // defaults to 'cookie'
+ client_id_storage_location?: 'cookie' | 'local';
37
+ // defaults to 'local'
38
+ session_id_storage_location?: 'cookie' | 'local';
39
}
40
41
export interface EventDispatcherOptions {
0 commit comments