import { BackendRuntimeContext } from '../context/BackendRuntimeContext'; import { EntityDict } from '../oak-app-domain'; export type AspectDict = { getWithdrawCreateData: (params: { accountId: string; price: number; withdrawAccountId?: string; }, context: BackendRuntimeContext) => Promise; getMpShipState: (params: { shipId: string; }, context: BackendRuntimeContext) => Promise; getExpressPrintInfo: (params: { shipId: string; }, context: BackendRuntimeContext) => Promise<{ type: "html"; data: string; }>; };