7 lines
108 B
TypeScript
7 lines
108 B
TypeScript
export interface ISession {
|
|
// TODO use timestamp field
|
|
expiredAt: number
|
|
id: string
|
|
json: string
|
|
}
|