{"version":3,"sources":["ng://my-module/lib/my-module.service.ts","ng://my-module/lib/my-module.component.ts","ng://my-module/lib/my-module.module.ts","ng://my-module/lib/clock-component/clock-component.ts","ng://my-module/lib/clock-component/ClockModule.ts"],"names":["MyModuleService","Injectable","args","providedIn","MyModuleComponent","prototype","ngOnInit","Component","selector","template","MyModuleModule","NgModule","declarations","imports","exports","ClockComponent","_this","this","timer","subscribe","x","currentTime","Date","ClockModule","MyFormatterModule"],"mappings":"uVAAA,IAAAA,EAAA,WAOE,SAAAA,gCALDC,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,sJAHd,GCAAC,EAAA,WAaE,SAAAA,KAKF,OAHEA,EAAAC,UAAAC,SAAA,iCAbDC,EAAAA,UAASL,KAAA,CAAC,CACTM,SAAU,iBACVC,SAAU,4FAcZL,EAlBA,GCAAM,EAAA,WAGA,SAAAA,KAM8B,2BAN7BC,EAAAA,SAAQT,KAAA,CAAC,CACRU,aAAc,CAACR,GACfS,QAAS,GAETC,QAAS,CAACV,OAEkBM,EAT9B,GCAAK,EAAA,WAYE,SAAAA,KAYF,OAVEA,EAAAV,UAAAC,SAAA,WAAA,IAAAU,EAAAC,KAEEC,EAAAA,MAAM,EAAG,KAAMC,UAAU,SAAAC,GACvBJ,EAAKK,YAAc,GAAK,IAAIC,4BAdjCf,EAAAA,UAASL,KAAA,CAAC,CACTM,SAAU,WACVC,SAAA,gJAmBFM,EAxBA,GCAAQ,EAAA,WAIA,SAAAA,KAO2B,2BAP1BZ,EAAAA,SAAQT,KAAA,CAAC,CACRU,aAAc,CAACG,GACfF,QAAS,CACPW,EAAAA,mBAEFV,QAAS,CAACC,OAEeQ,EAX3B","sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class MyModuleService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'vipm-my-module',\n template: `\n <p>\n my-module works!\n </p>\n `,\n styles: []\n})\nexport class MyModuleComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { MyModuleComponent } from './my-module.component';\n\n@NgModule({\n declarations: [MyModuleComponent],\n imports: [\n ],\n exports: [MyModuleComponent]\n})\nexport class MyModuleModule { }\n","import { timer } from 'rxjs';\nimport { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'wc-clock',\n templateUrl: './clock-component.html',\n styleUrls: [ './clock-component.scss' ]\n})\nexport class ClockComponent implements OnInit {\n\n public currentTime:string;\n\n constructor() { }\n\n ngOnInit() {\n\n timer(0, 1000).subscribe(x=>{\n this.currentTime = \"\" + new Date();\n });\n\n }\n\n\n\n}\n","import { NgModule } from '@angular/core';\nimport { ClockComponent } from './clock-component';\nimport { MyFormatterModule } from 'my-formatter';\n\n@NgModule({\n declarations: [ClockComponent],\n imports: [\n MyFormatterModule\n ],\n exports: [ClockComponent]\n})\nexport class ClockModule { }\n\n\n\n\n"]}