15 lines
512 B
TypeScript
15 lines
512 B
TypeScript
import { String, Boolean, Int, Decimal } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { EntityDesc } from 'oak-domain/lib/types';
|
|
import { Schema as Ship } from './Ship';
|
|
import { Schema as System } from './System';
|
|
export interface Schema extends EntityShape {
|
|
sort: Decimal<12, 8>;
|
|
phatom1?: Int<8>;
|
|
phatom2?: String<64>;
|
|
ships: Ship[];
|
|
system: System;
|
|
disabled: Boolean;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|