UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

11 lines (10 loc) 332 B
import React from "react"; type ListContextType = { /** * A callback function which is being called when the item is being focused by keyboard navigation * @param ListItem id */ updateFocusedItem: (id: string) => void; }; export declare const ListContext: React.Context<ListContextType>; export {};