/// import { ApplicationContract } from '@ioc:Adonis/Core/Application'; /** * Provider to bind redis to the container */ export default class QueueProvider { protected app: ApplicationContract; constructor(app: ApplicationContract); /** * Register the redis binding */ register(): void; /** * Registering the health check checker with HealthCheck service */ boot(): void; }