oak-general-business/lib/entities/SubwayStation.d.ts

8 lines
241 B
TypeScript

import { EntityShape } from "oak-domain/lib/types/Entity";
import { Schema as Subway } from "./Subway";
import { Schema as Station } from "./Station";
export interface Schema extends EntityShape {
station: Station;
subway: Subway;
}