interface LaneCustomListsEditorProps {
    allCustomLists: CustomListData[];
    changeFilter?: (value: string) => void;
    children?: ReactNode;
    customListIds: number[];
    filter?: string;
    filteredCustomLists?: CustomListData[];
    key?: Key;
    onUpdate?: (customListIds: number[]) => void;
    ref?: LegacyRef<default>;
}

Hierarchy

  • Props<default>
    • LaneCustomListsEditorProps

Properties

allCustomLists: CustomListData[]
changeFilter?: (value: string) => void
children?: ReactNode
customListIds: number[]
filter?: string
filteredCustomLists?: CustomListData[]
key?: Key
onUpdate?: (customListIds: number[]) => void
ref?: LegacyRef<default>