/** * Notifications Module * * NestJS module for Notifications feature. * Uses domain service pattern: Module → Controller → BackendNotificationsService * * @example Usage in app.module.ts * ```typescript * import { CoreModule } from '@plyaz/core/nestjs'; * import { NotificationsModule } from '@plyaz/core'; * * @Module({ * imports: [ * CoreModule.forRoot({ envPath: '.env' }), * NotificationsModule, * ], * }) * export class AppModule {} * ``` */ import { BACKEND_NOTIFICATIONS_DOMAIN_SERVICE } from './notifications.controller'; import { BackendNotificationsDomainService } from '../../domain/notifications'; export declare class NotificationsModule { } export { BackendNotificationsDomainService, BACKEND_NOTIFICATIONS_DOMAIN_SERVICE }; //# sourceMappingURL=notifications.module.d.ts.map