25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Table.d.ts 330 B

3 년 전
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;