8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
export type ConnectionConfig = {
|
|
host: string,
|
|
username: string,
|
|
password: string,
|
|
database: string,
|
|
port: number
|
|
};
|