/** * (c) Phan Trung Nguyên * User: nguyenpl117 * Date: 3/26/2020 * Time: 5:01 PM * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { ApplicationContract } from '../Contracts/ApplicationContract'; export declare abstract class Manager { protected app: ApplicationContract; protected config: any; protected _drivers: Map; protected _customCreators: any; constructor(app: ApplicationContract); abstract getDefaultDriver(): any; driver(driver?: string): any; createDriver(driver: string): any; callCustomCreator(driver: string): any; extend(driver: string, callback: Function): this; getDrivers(): Map; }