18 lines
534 B
TypeScript
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;
|