import { NgModule } from '@angular/core';
import { PortalService } from './portal.service';
import { TargetDirective } from './target.directive';
import { AttachDirective } from './attach.directive';

@NgModule({
    declarations: [PortalService,
        TargetDirective,
        AttachDirective],
    exports: [PortalService,
        TargetDirective,
        AttachDirective],
})
export class A11yModule { }
