1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 01:14:36 +00:00
Files
adapter/src/types/Session.ts

8 lines
109 B
TypeScript

import { Link } from "./Link";
export interface Session {
id: string;
state: string;
links: Link[];
}