Type Alias CookieLifetimeOption
CookieLifetimeOption: {
timeLimitMillis?: number;
timeLimitSeconds?: never;
} | {
timeLimitMillis?: never;
timeLimitSeconds?: number;
}
Type declaration
Optional
timeLimitMillis?: number
Optional
timeLimitSeconds?: never
Deprecated
Use timeLimitSeconds instead. Will be rounded to nearest second.