10 lines
361 B
TypeScript
10 lines
361 B
TypeScript
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { EntityDesc } from 'oak-domain/lib/types';
|
|
import { Schema as ShipCompany } from './ShipCompany';
|
|
import { Schema as System } from './System';
|
|
export interface Schema extends EntityShape {
|
|
shipCompany: ShipCompany;
|
|
system: System;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|