Interface ICompositeEntityProps<T>

Interface for the properties of a CompositeEntity.

T - The type of the properties object for the blocks within the entity.

interface ICompositeEntityProps<T> {
    blocks: ICompositeEntity<T>[];
}

Type Parameters

  • T

Properties

Properties

blocks: ICompositeEntity<T>[]