forgeplus-react/node_modules/rsuite-table/lib/common.d.ts

19 lines
352 B
TypeScript

export interface StandardProps {
/** The prefix of the component CSS class */
classPrefix?: string;
/** Additional classes */
className?: string;
/** Additional style */
style?: React.CSSProperties;
[key: string]: any;
}
export type SortType = 'desc' | 'asc';
export interface RowDataType {
dataKey: string;
[key: string]: any;
}