Files
video-gen/video-gen-admin/node_modules/@rc-component/tree/lib/DropIndicator.d.ts
T
2026-05-25 17:08:18 +08:00

9 lines
245 B
TypeScript

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;