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 ShipService } from './ShipService';
|
|
import { Schema as System } from './System';
|
|
export interface Schema extends EntityShape {
|
|
shipService: ShipService;
|
|
system: System;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|