10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import Authentication from './authentication'
|
|
|
|
export default class PostgreSQL {
|
|
authenticationClient: any;
|
|
|
|
constructor(connectionData: any) {
|
|
this.authenticationClient = new Authentication(connectionData);
|
|
}
|
|
}
|