ngx-bootstrap
Version:
Native Angular Bootstrap Components
17 lines • 565 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;
}());
//# sourceMappingURL=accordion.config.js.map