@athenna/database
Version:
The Athenna database handler for SQL/NoSQL.
14 lines (13 loc) • 376 B
TypeScript
/**
* @athenna/database
*
* (c) João Lenon <lenon@athenna.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import { ServiceProvider } from '@athenna/ioc';
export declare class DatabaseProvider extends ServiceProvider {
register(): Promise<void>;
shutdown(): Promise<void>;
}