13 lines
248 B
TypeScript
13 lines
248 B
TypeScript
import {DatabaseType} from "@model/databaseType";
|
|
|
|
export interface DatabaseResponse {
|
|
type: DatabaseType;
|
|
server?: string;
|
|
port: number;
|
|
database?: string;
|
|
user?: string;
|
|
ssl: boolean;
|
|
password?: string;
|
|
pathToDatabase?: string;
|
|
}
|