mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-13 12:01:36 +00:00
15 lines
313 B
TypeScript
15 lines
313 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { FuseScrollResetDirective } from '@fuse/directives/scroll-reset/scroll-reset.directive';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
FuseScrollResetDirective
|
|
],
|
|
exports : [
|
|
FuseScrollResetDirective
|
|
]
|
|
})
|
|
export class FuseScrollResetModule
|
|
{
|
|
}
|