import { NotificationManager } from "./manager.mjs"; import { FacteurEvents } from "@facteurjs/core/types"; import { ApplicationService } from "@adonisjs/core/types"; //#region src/providers/facteur_provider.d.ts declare module '@adonisjs/core/types' { interface ContainerBindings { 'notifications.manager': NotificationManager; } interface EventsList extends FacteurEvents {} } declare class NotificationsProvider { protected app: ApplicationService; constructor(app: ApplicationService); register(): Promise; } //#endregion export { NotificationsProvider as default };