1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-03 02:30:06 +00:00
Files
adapter/src/types/Session.ts
2020-09-01 14:28:15 +03:00

12 lines
188 B
TypeScript

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