Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x | import { NgModule } from '@angular/core';
import { BrowserLazyViewDirective } from './directives/browser-lazy-view.directive';
import { ClickOutsideDirective } from './directives/click-outside.directive';
import { FocusOutsideDirective } from './directives/focus-outside.directive';
import { FormSubmitDirective } from './directives/form-submit.directive';
import { IdentityProviderCapabilityDirective } from './directives/identity-provider-capability.directive';
import { IntersectionObserverDirective } from './directives/intersection-observer.directive';
import { LazyLoadingContentDirective } from './directives/lazy-loading-content.directive';
import { ProductContextAccessDirective } from './directives/product-context-access.directive';
import { ProductContextDirective } from './directives/product-context.directive';
import { ScrollDirective } from './directives/scroll.directive';
import { ServerHtmlDirective } from './directives/server-html.directive';
@NgModule({
declarations: [
BrowserLazyViewDirective,
ClickOutsideDirective,
FocusOutsideDirective,
FormSubmitDirective,
IdentityProviderCapabilityDirective,
IntersectionObserverDirective,
LazyLoadingContentDirective,
ProductContextAccessDirective,
ProductContextDirective,
ScrollDirective,
ServerHtmlDirective,
],
exports: [
BrowserLazyViewDirective,
ClickOutsideDirective,
FocusOutsideDirective,
FormSubmitDirective,
IdentityProviderCapabilityDirective,
IntersectionObserverDirective,
LazyLoadingContentDirective,
ProductContextAccessDirective,
ProductContextDirective,
ScrollDirective,
ServerHtmlDirective,
],
})
export class DirectivesModule {}
|