UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

18 lines (17 loc) 550 B
/** * Web TableContext Context * */ import React from 'react'; import type { TableTrProps } from '../TableTr'; type TableAccordionContextProps = { toggleOpenTr: (event: React.SyntheticEvent, allowInteractiveElement?: boolean) => void; trIsOpen: boolean; keepInDOM: TableTrProps['keepInDOM']; countTds: number; noAnimation: TableTrProps['noAnimation']; onOpen: TableTrProps['onOpen']; onClose: TableTrProps['onClose']; }; export declare const TableAccordionContext: React.Context<TableAccordionContextProps>; export {};