oak-pay-business/es/entities/ShipService.d.ts

10 lines
374 B
TypeScript

import { String } from 'oak-domain/lib/types/DataType';
import { EntityShape } from 'oak-domain/lib/types/Entity';
import { EntityDesc } from 'oak-domain/lib/types';
import { Schema as ShipCompany } from './ShipCompany';
export interface Schema extends EntityShape {
name: String<32>;
shipCompany: ShipCompany;
}
export declare const entityDesc: EntityDesc<Schema>;