Preparing search index...
    interface IAbstractAttribute<F extends IFormField = IFormField> {
        displayName?: string;
        formFields?: F[];
        id?: string;
        items?: Partial<F>[];
        key: string;
        parentId?: string;
        supplementaryGroup?: ISearchGroupBase<IGroupQueryBase>;
        termGroup: keyof ITermsGroup;
        type?: VALUE_TYPE;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    displayName?: string
    formFields?: F[]
    id?: string
    items?: Partial<F>[]
    key: string
    parentId?: string
    supplementaryGroup?: ISearchGroupBase<IGroupQueryBase>
    termGroup: keyof ITermsGroup
    type?: VALUE_TYPE