@tldraw/core
Version:
The tldraw core renderer and utilities.
13 lines • 459 B
TypeScript
import * as React from 'react';
import { TLBounds, TLBoundsEdge } from '../../types';
export interface EdgeHandleProps {
targetSize: number;
size: number;
bounds: TLBounds;
edge: TLBoundsEdge;
isHidden: boolean;
}
declare function _EdgeHandle({ size, isHidden, bounds, edge }: EdgeHandleProps): JSX.Element;
export declare const EdgeHandle: React.MemoExoticComponent<typeof _EdgeHandle>;
export {};
//# sourceMappingURL=EdgeHandle.d.ts.map