This repository has been archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
19 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { LineLoopDirective } from './line-loop.directive'; | ||
|
||
|
||
|
||
@NgModule({ | ||
declarations: [ | ||
LineLoopDirective | ||
], | ||
imports: [ | ||
CommonModule | ||
], | ||
exports: [ | ||
LineLoopDirective | ||
] | ||
declarations: [LineLoopDirective], | ||
imports: [CommonModule], | ||
exports: [LineLoopDirective], | ||
}) | ||
export class LineLoopModule { } | ||
export class LineLoopModule {} |
6 changes: 2 additions & 4 deletions
6
packages/core/lines/src/lib/line-segments/line-segments.directive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 5 additions & 13 deletions
18
packages/core/lines/src/lib/line-segments/line-segments.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { LineSegmentsDirective } from './line-segments.directive'; | ||
|
||
|
||
|
||
@NgModule({ | ||
declarations: [ | ||
LineSegmentsDirective | ||
], | ||
imports: [ | ||
CommonModule | ||
], | ||
exports: [ | ||
LineSegmentsDirective | ||
] | ||
declarations: [LineSegmentsDirective], | ||
imports: [CommonModule], | ||
exports: [LineSegmentsDirective], | ||
}) | ||
export class LineSegmentsModule { } | ||
export class LineSegmentsModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { LineDirective } from './line.directive'; | ||
|
||
|
||
|
||
@NgModule({ | ||
declarations: [ | ||
LineDirective | ||
], | ||
imports: [ | ||
CommonModule | ||
], | ||
exports: [ | ||
LineDirective | ||
] | ||
declarations: [LineDirective], | ||
imports: [CommonModule], | ||
exports: [LineDirective], | ||
}) | ||
export class LineModule { } | ||
export class LineModule {} |