oak-pay-business/lib/entities/WechatMpShip.d.ts

8 lines
348 B
TypeScript

import { EntityDesc } from 'oak-domain/lib/types';
import { Schema as AbstractShipAccount } from './AbstractShipAccount';
import { Schema as Application } from 'oak-general-business/lib/entities/Application';
export interface Schema extends AbstractShipAccount {
application: Application;
}
export declare const entityDesc: EntityDesc<Schema>;