ddr-example-kzurro
Version:
Aprendiedo a hacer librerias
51 lines (44 loc) • 1.3 kB
JavaScript
import { ɵɵdefineInjectable, Injectable, Component, NgModule } from '@angular/core';
class DdrExampleService {
constructor() { }
}
DdrExampleService.ɵprov = ɵɵdefineInjectable({ factory: function DdrExampleService_Factory() { return new DdrExampleService(); }, token: DdrExampleService, providedIn: "root" });
DdrExampleService.decorators = [
{ type: Injectable, args: [{
providedIn: 'root'
},] }
];
DdrExampleService.ctorParameters = () => [];
class DdrExampleComponent {
constructor() { }
ngOnInit() {
}
}
DdrExampleComponent.decorators = [
{ type: Component, args: [{
selector: 'ddr-example',
template: `
<p>
ddr-example works!
</p>
`
},] }
];
DdrExampleComponent.ctorParameters = () => [];
class DdrExampleModule {
}
DdrExampleModule.decorators = [
{ type: NgModule, args: [{
declarations: [DdrExampleComponent],
imports: [],
exports: [DdrExampleComponent]
},] }
];
/*
* Public API Surface of ddr-example
*/
/**
* Generated bundle index. Do not edit.
*/
export { DdrExampleComponent, DdrExampleModule, DdrExampleService };
//# sourceMappingURL=ddr-example-kzurro.js.map