redoc/lib/app.module.ts

15 lines
428 B
TypeScript
Raw Normal View History

2016-10-18 23:39:43 +03:00
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
2017-03-15 18:50:10 +03:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2016-10-18 23:39:43 +03:00
import { RedocModule } from './redoc.module';
import { Redoc } from './components/index';
@NgModule({
2017-03-15 18:50:10 +03:00
imports: [ BrowserModule, BrowserAnimationsModule, RedocModule ],
2016-10-18 23:39:43 +03:00
bootstrap: [ Redoc ],
exports: [ Redoc ]
})
export class AppModule {
}