MCPcopy Create free account
hub / github.com/ShaanCoding/makeread.me / MultiSelectContextProps

Interface MultiSelectContextProps

frontend/components/ui/multiselect.tsx:29–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27} & React.ComponentPropsWithoutRef<typeof CommandPrimitive>
28
29interface MultiSelectContextProps {
30 value: string[]
31 onValueChange: (value: any) => void
32 open: boolean
33 setOpen: (value: boolean) => void
34 inputValue: string
35 setInputValue: React.Dispatch<React.SetStateAction<string>>
36 activeIndex: number
37 setActiveIndex: React.Dispatch<React.SetStateAction<number>>
38}
39
40const MultiSelectContext = createContext<MultiSelectContextProps | null>(null)
41

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected