No Description

WantedPublish-b91e67a7.d.ts 827B

123456789101112131415161718192021222324
  1. import { Component } from "react";
  2. interface WatnedPublishBaseP {
  3. inputWantedRange?: [number, number];
  4. handleConfirm?: Function;
  5. currentWanted?: string | number | null;
  6. viewConfig?: {
  7. showInputWantedClear?: boolean;
  8. viewTextOptions?: {
  9. viewTitle: string;
  10. imgLabelBottom: string;
  11. inputTipTop: string;
  12. numberSuffix: string;
  13. inputTipBottom: string;
  14. clearModalTitle?: string;
  15. clearModalTip?: string;
  16. };
  17. };
  18. }
  19. declare class WatnedPublishBase<T extends WatnedPublishBaseP, S> extends Component<T, S> {
  20. formatCurrentWanted: (value: string | number | null) => string | number | null;
  21. formatResult: (value: string | number | null) => string | null;
  22. }
  23. export { WatnedPublishBaseP, WatnedPublishBase };