5 lines
98 B
TypeScript
5 lines
98 B
TypeScript
import type { Session } from './Session';
|
|
export type Sessions = {
|
|
[key: string]: Session;
|
|
};
|