No Description

index.d.ts 830B

12345678910111213141516171819
  1. /// <reference types="react" />
  2. import React from "react";
  3. import { PopoverProps } from "antd/lib/popover";
  4. import { WatnedPublishBase, WatnedPublishBaseP } from "../WantedPublish-b91e67a7";
  5. interface WantedPublishPopoverProp extends WatnedPublishBaseP {
  6. popoverConfig?: PopoverProps;
  7. }
  8. interface WantedPublishPopoverState {
  9. visible: boolean;
  10. current_wanted: number | string | null;
  11. }
  12. declare class WantedPublishPopover extends WatnedPublishBase<WantedPublishPopoverProp, WantedPublishPopoverState> {
  13. constructor(props: WantedPublishPopoverProp);
  14. handleConfirmButton: (containerRef?: React.RefObject<any> | undefined) => void;
  15. renderInitView(): JSX.Element;
  16. render(): JSX.Element;
  17. }
  18. export { WantedPublishPopover as default, WantedPublishPopover, WantedPublishPopoverProp, WantedPublishPopoverState };