Fix port being randomized

Also make it a number.
This commit is contained in:
Asher
2020-02-24 16:49:10 -06:00
parent 04e449c546
commit 4c6e4bedeb
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ export interface HttpServerOptions {
readonly commit?: string
readonly host?: string
readonly password?: string
readonly port?: number | string
readonly port?: number
readonly socket?: string
}