choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
16 lines (15 loc) • 401 B
TypeScript
import React from 'react';
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 declare type SortType = 'desc' | 'asc';
export interface RowDataType {
dataKey: string;
[key: string]: any;
}