ng2-bootstrap_runwzj_test
Version:
Native Angular Bootstrap Components
17 lines (16 loc) • 537 B
JavaScript
import { Injectable } from '@angular/core';
/**
* Configuration service, provides default values for the AccordionComponent.
*/
export var AccordionConfig = (function () {
function AccordionConfig() {
/** Whether the other panels should be closed when a panel is opened */
this.closeOthers = false;
}
AccordionConfig.decorators = [
{ type: Injectable },
];
/** @nocollapse */
AccordionConfig.ctorParameters = function () { return []; };
return AccordionConfig;
}());