This repository was archived by the owner on Oct 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathoperators.module.ts
47 lines (45 loc) · 2.01 KB
/
operators.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { LayoutModule } from '@angular/cdk/layout';
import { TranslateModule } from '@ngx-translate/core';
import { OperatorsRoutingModule } from './operators-routing.module';
import { OperatorsComponent } from './operators.component';
import { OperatorComponent } from './components/operator/operator.component';
import { OperatorHeaderComponent } from './components/operator-header/operator-header.component';
import { OperatorParametersComponent } from './components/operator-parameters/operator-parameters.component';
import { OperatorExamplesComponent } from './components/operator-examples/operator-examples.component';
import { RelatedOperatorsComponent } from './components/related-operators/related-operators.component';
import { OperatorExtrasComponent } from './components/operator-extras/operator-extras.component';
import { AdditionalResourcesComponent } from './components/additional-resources/additional-resources.component';
import { MarbleDiagramComponent } from './components/marble-diagram/marble-diagram.component';
import { WalkthroughComponent } from './components/walkthrough/walkthrough.component';
import { HighlightJsDirective } from './directives/highlight-js.directive';
import { SafeUrlPipe } from './pipes/safe-url.pipe';
import { MaterialModule } from '../material/material.module';
import { ArgumentPipe } from './pipes/argument.pipe';
@NgModule({
declarations: [
OperatorsComponent,
OperatorComponent,
OperatorHeaderComponent,
OperatorParametersComponent,
OperatorExamplesComponent,
RelatedOperatorsComponent,
OperatorExtrasComponent,
AdditionalResourcesComponent,
WalkthroughComponent,
MarbleDiagramComponent,
HighlightJsDirective,
SafeUrlPipe,
ArgumentPipe
],
imports: [
CommonModule,
MaterialModule,
OperatorsRoutingModule,
LayoutModule,
TranslateModule
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class OperatorsModule {}