minishouyin/node_modules/rc-tree/es/DropIndicator.d.ts

9 lines
245 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
import React from 'react';
export interface DropIndicatorProps {
dropPosition: -1 | 0 | 1;
dropLevelOffset: number;
indent: number;
}
declare const DropIndicator: React.FC<Readonly<DropIndicatorProps>>;
export default DropIndicator;