Brak opisu

index.d.ts 855B

1234567891011121314151617181920212223242526272829303132
  1. /// <reference types="react" />
  2. import React from "react";
  3. import { PopoverProps } from "antd/lib/popover";
  4. interface WantedPublishPopoverProp {
  5. popoverConfig?: PopoverProps;
  6. handleConfirm?: Function;
  7. }
  8. interface WantedPublishPopoverState {
  9. visible: boolean;
  10. current_wanted: number | string | null;
  11. }
  12. declare class WantedPublishPopover extends React.Component<
  13. WantedPublishPopoverProp,
  14. WantedPublishPopoverState
  15. > {
  16. constructor(props: WantedPublishPopoverProp);
  17. handleClose: () => void;
  18. clearCurrentWanted: (cb: Function) => void;
  19. handleUpdateCurrentWanted: (
  20. value: string | number | null,
  21. afterUpdate?: Function | undefined
  22. ) => void;
  23. renderInitView(): JSX.Element;
  24. render(): JSX.Element;
  25. }
  26. export {
  27. WantedPublishPopover as default,
  28. WantedPublishPopover,
  29. WantedPublishPopoverProp,
  30. WantedPublishPopoverState
  31. };