UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

24 lines (23 loc) 752 B
interface IBaseObject { [key: string]: any; } export default class ColumnManager { cached: any; columns: IBaseObject[]; constructor(elements: IBaseObject[]); isAnyColumnsFixed: () => any; isAnyColumnsLeftFixed: () => any; isAnyColumnsRightFixed: () => any; getLeftColumns: () => any; getMainColumns: () => any; getRightColumns: () => any; getColumns: () => any[]; getLeftColumnsWidth: () => any; getRightColumnsWidth: () => any; getGroupColumnsDepth: () => any; getColumnsWidthBase: (columns: IBaseObject[]) => string; normalize: (elementsParam: IBaseObject[]) => IBaseObject[]; reset: (elements: IBaseObject[]) => void; cache: (name: string, fn: () => void) => any; } export {};