You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
473 B
11 lines
473 B
import { ExpandableConfig, LegacyExpandableProps } from '../interface';
|
|
export declare const INTERNAL_COL_DEFINE = "RC_TABLE_INTERNAL_COL_DEFINE";
|
|
export declare function getExpandableProps<RecordType>(props: LegacyExpandableProps<RecordType> & {
|
|
expandable?: ExpandableConfig<RecordType>;
|
|
}): ExpandableConfig<RecordType>;
|
|
/**
|
|
* Returns only data- and aria- key/value pairs
|
|
* @param {object} props
|
|
*/
|
|
export declare function getDataAndAriaProps(props: object): {};
|