oak-pay-business/es/components/withdraw/display/web.d.ts

26 lines
733 B
TypeScript

import { EntityDict } from '../../../oak-app-domain';
export default function render(props: {
data: {
createAt?: string;
itemData: ({
type: string;
typeColor: string;
lossExp: string;
channel: string;
priceYuan: string;
lossYuan: string;
finalYuan: string;
iState?: string;
iStateColor?: string;
updateAt?: string;
reason?: string;
})[];
withdrawExactPrice: string;
step: 0 | 1 | 2;
iState?: EntityDict['withdraw']['OpSchema']['iState'];
};
methods: {
t: (key: string, param?: any) => string;
};
}): import("react").JSX.Element;