Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Table.d.ts 330B

123456789101112131415
  1. import { BsPrefixComponent } from './helpers';
  2. export interface TableProps {
  3. striped?: boolean;
  4. bordered?: boolean;
  5. borderless?: boolean;
  6. hover?: boolean;
  7. size?: string;
  8. variant?: string;
  9. responsive?: boolean | string;
  10. }
  11. declare class Table extends BsPrefixComponent<'table', TableProps> {}
  12. export default Table;