\n\n \n
\n\n
\n\n
{{ title }} app is running!\n\n
\n\n
\n\n \n
Resources
\n
Here are some links to help you get started:
\n\n
\n\n \n
Next Steps
\n
What do you want to do next with your app?
\n\n
\n\n
\n
\n\n
\n
\n\n
Angular Material\n
\n\n
\n
\n\n
Add PWA Support\n
\n\n
\n\n
\n
\n\n
Run and Watch Tests\n
\n\n
\n
\n\n
Build for Production\n
\n
\n\n \n
\n
ng generate component xyz
\n
ng add @angular/material
\n
ng add @angular/pwa
\n
ng add _____
\n
ng test
\n
ng build --prod
\n
\n\n \n
\n\n \n
\n\n
\n\n
\n\n\n\n\n\n\n\n\n\n\n"
}
],
"modules": [
{
"name": "AppModule",
"id": "module-AppModule-78ec09853dad097ef714ec50c65dd561a46c530bd1c662966fa2a321642023e923285e01f0a869466b999159d716022cc5c6b62fd07c7d01835e3b90a72f7790",
"description": "",
"deprecationMessage": "",
"deprecated": false,
"file": "src/app/app.module.ts",
"methods": [],
"sourceCode": "import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\n\nimport { AppComponent } from './app.component';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { HttpClientModule } from '@angular/common/http';\nimport { TranslocoRootModule } from './transloco-root.module';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n BrowserAnimationsModule,\n HttpClientModule,\n TranslocoRootModule\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }\n",
"children": [
{
"type": "providers",
"elements": []
},
{
"type": "declarations",
"elements": [
{
"name": "AppComponent"
}
]
},
{
"type": "imports",
"elements": [
{
"name": "TranslocoRootModule"
}
]
},
{
"type": "exports",
"elements": []
},
{
"type": "bootstrap",
"elements": [
{
"name": "AppComponent"
}
]
},
{
"type": "classes",
"elements": []
}
]
},
{
"name": "TranslocoRootModule",
"id": "module-TranslocoRootModule-5f134d48bb52d5c852fc8c4c77d1f70823c954c5f9277a01d2302dee177db3ff18d206458f7123afd440209657c3044024921a62ff102fe43c6b6dcadb8e2c68",
"description": "",
"deprecationMessage": "",
"deprecated": false,
"file": "src/app/transloco-root.module.ts",
"methods": [],
"sourceCode": "import { HttpClient } from '@angular/common/http';\nimport {\n TRANSLOCO_LOADER,\n Translation,\n TranslocoLoader,\n TRANSLOCO_CONFIG,\n translocoConfig,\n TranslocoModule\n} from '@ngneat/transloco';\nimport { Injectable, NgModule } from '@angular/core';\nimport { environment } from '../environments/environment';\nimport { Observable } from 'rxjs';\n\n@Injectable({ providedIn: 'root' })\nexport class TranslocoHttpLoader implements TranslocoLoader {\n constructor(private http: HttpClient) { }\n\n getTranslation(lang: string): Observable