dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_PanelModule cluster_PanelModule_declarations cluster_PanelModule_exports cluster_PanelModule_imports Panel Panel PanelModule PanelModule Panel->PanelModule SwitcherList SwitcherList SwitcherList->PanelModule SwitcherListItem SwitcherListItem SwitcherListItem->PanelModule Panel Panel PanelModule->Panel SwitcherList SwitcherList PanelModule->SwitcherList SwitcherListItem SwitcherListItem PanelModule->SwitcherListItem I18nModule I18nModule I18nModule->PanelModule

File

src/ui-shell/panel/panel.module.ts

import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";

import { I18nModule } from "carbon-components-angular/i18n";

import { Panel } from "./panel.component";
import { SwitcherList } from "./switcher-list.component";
import { SwitcherListItem } from "./switcher-list-item.component";

export {
	Panel,
	SwitcherList,
	SwitcherListItem
};

@NgModule({
	declarations: [
		Panel,
		SwitcherList,
		SwitcherListItem
	],
	imports: [CommonModule, I18nModule],
	exports: [
		Panel,
		SwitcherList,
		SwitcherListItem
	]
})
export class PanelModule { }

results matching ""

    No results matching ""