No Description

index.d.ts 397B

123456789101112131415
  1. /// <reference types="react" />
  2. import { Component } from "react";
  3. interface Props {
  4. onClickPayed?: Function;
  5. onClickProblem?: Function;
  6. }
  7. declare class WaitPayInfoView extends Component<Props, {}> {
  8. static defaultProps: {
  9. onClickPayed: () => void;
  10. onClickProblem: () => void;
  11. };
  12. render(): JSX.Element;
  13. }
  14. export { WaitPayInfoView as default, WaitPayInfoView };