import { EntityDict } from '../../../oak-app-domain'; import BackendRuntimeContext from '../../../context/BackendRuntimeContext'; import { EntityDict as BaseEntityDict } from 'oak-domain/lib/types/Entity'; import DebugClazz from './WechatMpShip.debug'; export default class WechatMpShip> extends DebugClazz { eOrder(shipId: string, context: Context): Promise; cancelOrder(shipId: string, context: Context): Promise; syncState(shipId: string, context: Context): Promise<{ state: EntityDict['ship']['OpSchema']['iState']; time?: number; }>; syncPaths(shipId: string, context: Context): Promise; getPrintInfo(shipId: string, context: Context): Promise<{ type: 'html'; data: string; }>; }