UNPKG

sentry-adonis-v6

Version:
13 lines (12 loc) 380 B
import type { ApplicationService } from '@adonisjs/core/types'; import { SentryService } from '../src/types.js'; declare module '@adonisjs/core/types' { interface ContainerBindings { 'sentry': SentryService; } } export default class SentryProvider { protected app: ApplicationService; constructor(app: ApplicationService); register(): Promise<void>; }