DropIndicator.d.ts 245 B

12345678
  1. import React from 'react';
  2. export interface DropIndicatorProps {
  3. dropPosition: -1 | 0 | 1;
  4. dropLevelOffset: number;
  5. indent: number;
  6. }
  7. declare const DropIndicator: React.FC<Readonly<DropIndicatorProps>>;
  8. export default DropIndicator;