sentry-adonis-v6
Version:
Sentry provider for adonisjs v6 framework
13 lines (12 loc) • 380 B
TypeScript
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>;
}