dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_StarkPrettyPrintModule cluster_StarkPrettyPrintModule_exports cluster_StarkPrettyPrintModule_declarations StarkPrettyPrintComponent StarkPrettyPrintComponent StarkPrettyPrintModule StarkPrettyPrintModule StarkPrettyPrintComponent->StarkPrettyPrintModule StarkPrettyPrintComponent StarkPrettyPrintComponent StarkPrettyPrintModule->StarkPrettyPrintComponent

File

src/modules/pretty-print/pretty-print.module.ts

import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { StarkPrettyPrintComponent } from "./components";
import { STARK_PRETTY_PRINT_SERVICE, StarkPrettyPrintServiceImpl } from "./services";

@NgModule({
	providers: [
		{
			provide: STARK_PRETTY_PRINT_SERVICE,
			useClass: StarkPrettyPrintServiceImpl
		}
	],
	declarations: [StarkPrettyPrintComponent],
	imports: [CommonModule],
	exports: [StarkPrettyPrintComponent]
})
export class StarkPrettyPrintModule {}

results matching ""

    No results matching ""