mirror of
https://github.com/inspec/inspec
synced 2024-11-24 05:33:17 +00:00
13 lines
372 B
TypeScript
13 lines
372 B
TypeScript
// /<reference path="../node_modules/angular2/typings/browser.d.ts"/>
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
@NgModule({
|
|
imports: [ BrowserModule ],
|
|
declarations: [ AppComponent ],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
export class AppModule { }
|