mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-19 08:50:29 +00:00
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { InterchangeSystem } from "./entities/InterchangeSystem";
|
|
|
|
export interface ServerContext {
|
|
systems: InterchangeSystem[];
|
|
findSystemById: (id: string) => InterchangeSystem | null;
|
|
}
|