Interface SetManagerProps

Set manager properties

interface SetManagerProps {
    elems: ElemData[];
    setElems: ((elems) => void);
    setGraph: ((graph) => void);
    setSets: ((sets) => void);
    sets: SetData[];
}

Properties

elems: ElemData[]

Array of elements

setElems: ((elems) => void)

Callback function to update the elements in the app

Type declaration

    • (elems): void
    • Callback function to update the elements in the app

      Parameters

      Returns void

Param: elems

new elements

setGraph: ((graph) => void)

Type declaration

    • (graph): void
    • Parameters

      Returns void

setSets: ((sets) => void)

Callback function to update the sets in the app

Type declaration

    • (sets): void
    • Callback function to update the sets in the app

      Parameters

      Returns void

Param: sets

new sets

sets: SetData[]

Array of sets

Generated using TypeDoc