dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_HelgolandPermalinkModule cluster_HelgolandPermalinkModule_declarations cluster_HelgolandPermalinkModule_exports BoolTogglerComponent BoolTogglerComponent HelgolandPermalinkModule HelgolandPermalinkModule BoolTogglerComponent->HelgolandPermalinkModule RefreshButtonComponent RefreshButtonComponent RefreshButtonComponent->HelgolandPermalinkModule StringTogglerComponent StringTogglerComponent StringTogglerComponent->HelgolandPermalinkModule BoolTogglerComponent BoolTogglerComponent HelgolandPermalinkModule->BoolTogglerComponent RefreshButtonComponent RefreshButtonComponent HelgolandPermalinkModule->RefreshButtonComponent StringTogglerComponent StringTogglerComponent HelgolandPermalinkModule->StringTogglerComponent

File

libs/permalink/src/lib/permalink.module.ts

Description

The permalink module includes the following functionality:

  • permalink handling to parse and create permalinks

import { NgModule } from '@angular/core';
import { ClipboardModule } from 'ngx-clipboard';

import { PermalinkInMailComponent } from './permalink-in-mail/permalink-in-mail.component';
import { PermalinkNewWindowComponent } from './permalink-new-window/permalink-new-window.component';
import { PermalinkToClipboardComponent } from './permalink-to-clipboard/permalink-to-clipboard.component';

const COMPONENTS = [
  PermalinkInMailComponent,
  PermalinkNewWindowComponent,
  PermalinkToClipboardComponent
];

/**
 * The permalink module includes the following functionality:
 * - permalink handling to parse and create permalinks
 */
@NgModule({
  declarations: [
    COMPONENTS
  ],
  imports: [
    ClipboardModule
  ],
  exports: [
    COMPONENTS
  ],
  providers: [
  ]
})
export class HelgolandPermalinkModule { }

result-matching ""

    No results matching ""