chore(resizer-types): inline

This commit is contained in:
moklick
2025-09-15 11:43:50 +02:00
parent b6ae4cc11f
commit 3cbe437766
+3
View File
@@ -19,6 +19,7 @@ export type ResizeParamsWithDirection = ResizeParams & {
* Used to determine the control line position of the NodeResizer * Used to determine the control line position of the NodeResizer
* *
* @public * @public
* @inline
*/ */
export type ControlLinePosition = 'top' | 'bottom' | 'left' | 'right'; export type ControlLinePosition = 'top' | 'bottom' | 'left' | 'right';
@@ -26,6 +27,7 @@ export type ControlLinePosition = 'top' | 'bottom' | 'left' | 'right';
* Used to determine the control position of the NodeResizer * Used to determine the control position of the NodeResizer
* *
* @public * @public
* @inline
*/ */
export type ControlPosition = ControlLinePosition | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; export type ControlPosition = ControlLinePosition | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
@@ -42,6 +44,7 @@ export enum ResizeControlVariant {
/** /**
* The direction the user can resize the node. * The direction the user can resize the node.
* @public * @public
* @inline
*/ */
export type ResizeControlDirection = 'horizontal' | 'vertical'; export type ResizeControlDirection = 'horizontal' | 'vertical';