interface GuideLineItemContainer<T> {
    onChildRemoved?: ((child: T) => void);
}

Type Parameters

  • T

Properties

Properties

onChildRemoved?: ((child: T) => void)