@foal/core
Version:
Full-featured Node.js framework, with no complexity
19 lines (18 loc) • 336 B
TypeScript
/**
* Describes the session state to be saved by the store.
*
* @export
* @interface SessionState
*/
export interface SessionState {
id: string;
userId: string | number | null;
content: {
[key: string]: any;
};
flash: {
[key: string]: any;
};
updatedAt: number;
createdAt: number;
}