UNPKG

@aliretail/react-materials-components

Version:
17 lines (16 loc) 789 B
export declare function getColumnKey(column: any): any; /** * 从 localStorage 获取表格列配置缓存 * * @param {string} storageKey localStorage 中的 key * @return {*} 返回的普通对象,key 是表格列的 key 属性值,value 是 boolean,true 表示选中 */ export declare function getLocalStorageConfig(storageKey: any): any[]; /** * 把表格列配置保存进 localStorage * @param {string} storageKey localStorage 中的 key * @param {Object} config 普通对象,key 是表格列的 key 属性值,value 是 boolean,true 表示选中 */ export declare function saveColumnConfig(storageKey: any, config?: {}): void; export declare function needResort(columns: any, setting: any[]): boolean; export declare function filterSetting(settingList: any): any;