Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AccordionCollapse.d.ts 410B

123456789101112131415161718
  1. import * as React from 'react';
  2. import Collapse, { CollapseProps } from './Collapse';
  3. import { BsPrefixComponent } from './helpers';
  4. export interface AccordionCollapseProps
  5. extends CollapseProps,
  6. React.HTMLAttributes<HTMLDivElement> {
  7. eventKey: string;
  8. }
  9. declare class AccordionCollapse extends BsPrefixComponent<
  10. typeof Collapse,
  11. AccordionCollapseProps
  12. > {}
  13. export default AccordionCollapse;