mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-08 04:50:06 +00:00
16 lines
242 B
TypeScript
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
|
|
}
|