UNPKG

@aliretail/react-materials-components

Version:
31 lines (30 loc) 741 B
import * as React from 'react'; import { PopupProps } from '@alifd/next/types/overlay/index'; export interface SettingProps { className?: string; style?: React.CSSProperties; /** * 如保存在 localStorage 中,使用此 key 保存 * 和受控功能同时使用时失效 */ localStorageKey?: string; /** * 受控 */ setting?: any[]; /** * 设置改变时的回调 */ onSettingChange?: (newSetting: any) => void; /** * Table Columns 数据 */ columns: any[]; popUpProps?: Partial<PopupProps>; tableStateChange?: (config: any) => void; } declare const _default: { (props: any): JSX.Element; displayName: string; }; export default _default;