7 lines
108 B
TypeScript
7 lines
108 B
TypeScript
type ServerConfig = {
|
|
username: string,
|
|
hostname: string,
|
|
password: string,
|
|
port: number,
|
|
}
|