UNPKG

protontype

Version:

A simple REST framework make in TypeScript

8 lines (7 loc) 253 B
export declare abstract class DBConnector<OptionsType, ConnectionType> { abstract createConnection(config?: OptionsType): Promise<ConnectionType>; } export declare class ProtonDB<C> { static dbConnection: any; static getBD<C>(): C; }