mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 02:30:06 +00:00
12 lines
188 B
TypeScript
12 lines
188 B
TypeScript
import { Link } from './Link'
|
|
|
|
export interface Session {
|
|
id: string
|
|
state: string
|
|
links: Link[]
|
|
attributes: {
|
|
sessionInactiveTimeout: number
|
|
}
|
|
creationTimeStamp: string
|
|
}
|