Interface TreeApplyFilterParameter<Form, Data>

interface TreeApplyFilterParameter<
    Form extends ISearchForm = ISearchForm,
    Data extends WithIdentifier & WithChildren = any,
> {
    filter: Form;
    scopeTypes?: string[];
    tree: Node<Data, any>[];
}

Type Parameters

Properties

filter: Form
scopeTypes?: string[]
tree: Node<Data, any>[]