gridjs
Version:
Advanced table plugin
20 lines (19 loc) • 566 B
TypeScript
import { Component, h, RefObject } from 'preact';
import { BaseComponent, BaseProps } from '../base';
interface ShadowTableProps extends BaseProps {
tableRef?: RefObject<Component>;
}
export declare class ShadowTable extends BaseComponent<ShadowTableProps> {
private tableElement;
private tableClassName;
private tableStyle;
constructor(props: any, context: any);
widths(): {
[columnId: string]: {
minWidth: number;
width: number;
};
};
render(): h.JSX.Element;
}
export {};