10 lines
356 B
TypeScript
10 lines
356 B
TypeScript
import { EntityShape } from "oak-domain/lib/types/Entity";
|
|
import { Schema as Subway } from "./Subway";
|
|
import { Schema as Station } from "./Station";
|
|
import { EntityDesc } from 'oak-domain/lib/types/EntityDesc';
|
|
export interface Schema extends EntityShape {
|
|
station: Station;
|
|
subway: Subway;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|