Project

General

Profile

1
import {NgModule} from "@angular/core";
2
import {CommonModule} from "@angular/common";
3
import {SvgBackgroundDirective} from "./svg-background.directive";
4

    
5
@NgModule({
6
  imports: [CommonModule],
7
  declarations: [SvgBackgroundDirective],
8
  exports: [SvgBackgroundDirective]
9
})
10
export class SvgBackgroundModule {
11

    
12
}
(2-2/3)