chore(ResizeControlLine): cleanup type

This commit is contained in:
moklick
2025-04-17 13:00:17 +02:00
parent bee2f4aa05
commit cda61ff243
@@ -111,6 +111,6 @@ export type ResizeControlProps = Pick<
/** /**
* @expand * @expand
*/ */
export type ResizeControlLineProps = ResizeControlProps & { export type ResizeControlLineProps = Omit<ResizeControlProps, 'resizeDirection'> & {
position?: ControlLinePosition; position?: ControlLinePosition;
}; };