bs-datatable
Version:
A data table based on Bootstrap 5
20 lines (19 loc) • 685 B
TypeScript
import { BSDataTableColDefinition } from "../commonTypes/common-types";
import { BSDataTableBase } from "./BSDataTableBase";
import { BSDataTableInput } from "./BSDataTableInput";
export declare class BSDataTableCell extends BSDataTableBase {
/**
* @type {boolean}
*/
isHeader: boolean;
options: BSDataTableColDefinition;
/**
* @param {BSDataTableColDefinition} [options]
*/
constructor(options?: BSDataTableColDefinition, isHeader?: boolean);
render(): void;
addInputControl(): void;
getInputControls(): BSDataTableInput[];
getCellText(): string | number | boolean | string[];
clone(): BSDataTableCell;
}