extensions.module.ts.template 458 B

123456789101112
  1. import { CommonModule } from '@angular/common';
  2. import { NgModule } from '@angular/core';
  3. /**
  4. * This is a placeholder module for UI extensions provided by the AdminUiPlugin `extensions` option.
  5. * When the {@link compileUiExtensions} function is executed, this module gets temporarily replaced
  6. * by a generated module which includes all of the configured extension modules.
  7. */
  8. @NgModule({
  9. imports: [CommonModule],
  10. })
  11. export class ExtensionsModule {}