13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import {NgModule} from "@angular/core";
|
|
import {CommonModule} from "@angular/common";
|
|
import {SvgBackgroundDirective} from "./svg-background.directive";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule],
|
|
declarations: [SvgBackgroundDirective],
|
|
exports: [SvgBackgroundDirective]
|
|
})
|
|
export class SvgBackgroundModule {
|
|
|
|
}
|