UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

18 lines (17 loc) 556 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']; onOpened: TableTrProps['onOpened']; onClosed: TableTrProps['onClosed']; }; export declare const TableAccordionContext: React.Context<TableAccordionContextProps>; export {};