1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-08 04:50:06 +00:00
Files
adapter/src/types/Session.ts
2020-12-22 16:21:24 +03:00

16 lines
242 B
TypeScript

import { Link } from './Link'
export interface Session {
id: string
state: string
links: Link[]
attributes: {
sessionInactiveTimeout: number
}
creationTimeStamp: string
}
export interface SessionVariable {
value: string
}