mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import { NgModule, ErrorHandler, APP_ID } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { Redoc, SecurityDefinitions, Method, REDOC_DIRECTIVES } from './components/index';
|
|
import { REDOC_COMMON_DIRECTIVES, DynamicNg2Wrapper } from './shared/components/index';
|
|
import { REDOC_PIPES } from './utils/pipes';
|
|
import { CustomErrorHandler } from './utils/'
|
|
import { LazyTasksService } from './shared/components/LazyFor/lazy-for';
|
|
|
|
import {
|
|
OptionsService,
|
|
MenuService,
|
|
ScrollService,
|
|
Hash,
|
|
WarningsService,
|
|
AppStateService,
|
|
ComponentParser,
|
|
ContentProjector,
|
|
COMPONENT_PARSER_ALLOWED } from './services/';
|
|
import { SpecManager } from './utils/spec-manager';
|
|
|
|
@NgModule({
|
|
imports: [ CommonModule ],
|
|
declarations: [ REDOC_DIRECTIVES, REDOC_COMMON_DIRECTIVES, REDOC_PIPES ],
|
|
bootstrap: [ Redoc ],
|
|
entryComponents: [ SecurityDefinitions, DynamicNg2Wrapper, Method ],
|
|
providers: [
|
|
SpecManager,
|
|
ScrollService,
|
|
Hash,
|
|
MenuService,
|
|
WarningsService,
|
|
OptionsService,
|
|
AppStateService,
|
|
ComponentParser,
|
|
ContentProjector,
|
|
LazyTasksService,
|
|
{ provide: APP_ID, useValue: 'redoc' },
|
|
{ provide: ErrorHandler, useClass: CustomErrorHandler },
|
|
{ provide: COMPONENT_PARSER_ALLOWED, useValue: { 'security-definitions': SecurityDefinitions} }
|
|
],
|
|
exports: [Redoc]
|
|
})
|
|
export class RedocModule {
|
|
}
|
|
|
|
export { Redoc, SpecManager };
|