mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Made session context optional again (#45418)
Partially reverted this PR: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/44983#issuecomment-642209290
This commit is contained in:
parent
a62880a6ec
commit
f84d9d1c11
6
types/cookie-session/index.d.ts
vendored
6
types/cookie-session/index.d.ts
vendored
@ -84,17 +84,17 @@ declare namespace CookieSessionInterfaces {
|
||||
/**
|
||||
* Is true if the session has been changed during the request.
|
||||
*/
|
||||
isChanged: boolean;
|
||||
isChanged?: boolean;
|
||||
|
||||
/**
|
||||
* Is true if the session is new.
|
||||
*/
|
||||
isNew: boolean;
|
||||
isNew?: boolean;
|
||||
|
||||
/**
|
||||
* Determine if the session has been populated with data or is empty.
|
||||
*/
|
||||
isPopulated: boolean;
|
||||
isPopulated?: boolean;
|
||||
|
||||
[propertyName: string]: any;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user