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

18 lines
534 B
TypeScript

import React from 'react';
import { EntityDict } from "../../../oak-app-domain";
import { WebComponentProps } from "oak-frontend-base";
export default function render(props: WebComponentProps<EntityDict, 'withdraw', false, {
gotoDetail: (id: string) => void;
withdraws?: ({
id: string;
iState: string;
iStateColor: string;
price: string;
lossDescription: string;
countDescription: number;
createAt: string;
})[];
}, {
goBack: () => void;
}>): React.JSX.Element;