accordion.config.d.ts 287 B

123456789
  1. /**
  2. * Configuration service, provides default values for the AccordionComponent.
  3. */
  4. export declare class AccordionConfig {
  5. /** Whether the other panels should be closed when a panel is opened */
  6. closeOthers: Boolean;
  7. /** turn on/off animation */
  8. isAnimated: Boolean;
  9. }