change typedoc message for ResizeControl

This commit is contained in:
peterkogo
2025-10-21 15:32:45 +02:00
committed by moklick
parent b63ea1f63e
commit 9c0d6f1f00

View File

@@ -53,7 +53,6 @@ export type NodeResizerProps = {
export type ResizeControlProps = Pick<
NodeResizerProps,
| 'nodeId'
| 'color'
| 'minWidth'
| 'minHeight'
@@ -76,5 +75,7 @@ export type ResizeControlProps = Pick<
* @example ResizeControlVariant.Handle, ResizeControlVariant.Line
*/
variant?: ResizeControlVariant;
/** Required nodeId if used outside of a custom node */
nodeId?: string;
children?: Snippet;
} & HTMLAttributes<HTMLDivElement>;