index.ts 879 B

123456789101112
  1. // This is the "public API" of the admin-ui package, used by plugins which want to define
  2. // extensions to the admin UI and need to import components (services, modules etc) from the admin-ui.
  3. export { JobQueueService } from '../src/app/core/providers/job-queue/job-queue.service';
  4. export { LocalStorageService } from '../src/app/core/providers/local-storage/local-storage.service';
  5. export { NotificationService } from '../src/app/core/providers/notification/notification.service';
  6. export { DataModule } from '../src/app/data/data.module';
  7. export { DataService } from '../src/app/data/providers/data.service';
  8. export { ServerConfigService } from '../src/app/data/server-config';
  9. export { ModalService } from '../src/app/shared/providers/modal/modal.service';
  10. export { SharedModule } from '../src/app/shared/shared.module';
  11. export * from '../src/app/shared/shared-declarations';