-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.js
58 lines (52 loc) · 2.39 KB
/
weather.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { ɵɵdefineInjectable, ɵsetClassMetadata, Injectable, ɵɵdefineComponent, ɵɵelementStart, ɵɵtext, ɵɵelementEnd, Component, ɵɵdefineNgModule, ɵɵdefineInjector, ɵɵsetNgModuleScope, NgModule } from '@angular/core';
class WeatherService {
constructor() { }
}
WeatherService.ɵfac = function WeatherService_Factory(t) { return new (t || WeatherService)(); };
WeatherService.ɵprov = ɵɵdefineInjectable({ token: WeatherService, factory: WeatherService.ɵfac, providedIn: 'root' });
/*@__PURE__*/ (function () { ɵsetClassMetadata(WeatherService, [{
type: Injectable,
args: [{
providedIn: 'root'
}]
}], function () { return []; }, null); })();
class WeatherComponent {
constructor() { }
ngOnInit() {
}
}
WeatherComponent.ɵfac = function WeatherComponent_Factory(t) { return new (t || WeatherComponent)(); };
WeatherComponent.ɵcmp = ɵɵdefineComponent({ type: WeatherComponent, selectors: [["lib-weather"]], decls: 2, vars: 0, template: function WeatherComponent_Template(rf, ctx) { if (rf & 1) {
ɵɵelementStart(0, "p");
ɵɵtext(1, "weather works!");
ɵɵelementEnd();
} }, styles: [""] });
/*@__PURE__*/ (function () { ɵsetClassMetadata(WeatherComponent, [{
type: Component,
args: [{
selector: 'lib-weather',
templateUrl: './weather.component.html',
styleUrls: ['./weather.component.css']
}]
}], function () { return []; }, null); })();
class WeatherModule {
}
WeatherModule.ɵmod = ɵɵdefineNgModule({ type: WeatherModule });
WeatherModule.ɵinj = ɵɵdefineInjector({ factory: function WeatherModule_Factory(t) { return new (t || WeatherModule)(); }, imports: [[]] });
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && ɵɵsetNgModuleScope(WeatherModule, { declarations: [WeatherComponent], exports: [WeatherComponent] }); })();
/*@__PURE__*/ (function () { ɵsetClassMetadata(WeatherModule, [{
type: NgModule,
args: [{
declarations: [WeatherComponent],
imports: [],
exports: [WeatherComponent]
}]
}], null, null); })();
/*
* Public API Surface of weather
*/
/**
* Generated bundle index. Do not edit.
*/
export { WeatherComponent, WeatherModule, WeatherService };
//# sourceMappingURL=weather.js.map