10 lines
326 B
TypeScript
10 lines
326 B
TypeScript
import { BRC } from '../types/RuntimeCxt';
|
|
import { EntityDict } from '../oak-app-domain';
|
|
export type AspectDict = {
|
|
getWithdrawCreateData: (params: {
|
|
accountId: string;
|
|
price: number;
|
|
withdrawAccountId?: string;
|
|
}, context: BRC) => Promise<EntityDict['withdraw']['CreateSingle']['data']>;
|
|
};
|