Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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;