Açıklama Yok

index.d.ts 647B

123456789101112131415161718192021
  1. /// <reference types="react" />
  2. import React from 'react';
  3. interface WantedPublishViewProps {
  4. type?: 'pop' | 'modal';
  5. wrapperClass?: string;
  6. current_wanted: number | string | null;
  7. InputWantedValueChange: Function;
  8. InputWantedPressEnter: Function;
  9. InputWantedOnBlur: Function;
  10. InputWantedClear: Function;
  11. CloseFunction: Function;
  12. }
  13. interface WantedPublishViewState {
  14. payment?: number;
  15. }
  16. declare class WantedPublishView extends React.Component<WantedPublishViewProps, WantedPublishViewState> {
  17. constructor(props: WantedPublishViewProps);
  18. render(): JSX.Element;
  19. }
  20. export { WantedPublishView as default };