mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
10 lines
278 B
TypeScript
10 lines
278 B
TypeScript
import { ApplicationContract } from '@ioc:Adonis/Core/Application';
|
|
export default class EventProvider {
|
|
protected app: ApplicationContract;
|
|
constructor(app: ApplicationContract);
|
|
/**
|
|
* Register `Event emitter` to the container.
|
|
*/
|
|
register(): void;
|
|
}
|