123456789101112131415161718192021222324 |
- /// <reference types="react" />
- import React from "react";
- interface WantedPublishViewProps {
- type?: "pop" | "modal";
- wrapperClass?: string;
- current_wanted: number | string | null;
- InputWantedValueChange: Function;
- InputWantedPressEnter: Function;
- InputWantedOnBlur: Function;
- InputWantedClear: Function;
- CloseFunction: Function;
- }
- interface WantedPublishViewState {
- payment?: number;
- }
- declare class WantedPublishView extends React.Component<
- WantedPublishViewProps,
- WantedPublishViewState
- > {
- constructor(props: WantedPublishViewProps);
- render(): JSX.Element;
- }
- export { WantedPublishView as default };
|