Mask.d.ts 476 B

123456789101112131415161718
  1. import React from 'react';
  2. import type { PosInfo } from './hooks/useTarget';
  3. export interface MaskProps {
  4. prefixCls?: string;
  5. pos: PosInfo;
  6. rootClassName?: string;
  7. showMask?: boolean;
  8. style?: React.CSSProperties;
  9. fill?: string;
  10. open?: boolean;
  11. animated?: boolean | {
  12. placeholder: boolean;
  13. };
  14. zIndex?: number;
  15. disabledInteraction?: boolean;
  16. }
  17. declare const Mask: (props: MaskProps) => React.JSX.Element;
  18. export default Mask;