collapse.d.ts 234 B

123456789
  1. /**
  2. * A directive to provide a simple way of hiding and showing elements on the page.
  3. */
  4. export declare class NgbCollapse {
  5. /**
  6. * If `true`, will collapse the element or show it otherwise.
  7. */
  8. collapsed: boolean;
  9. }