aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-05-15 06:31:20 +0000
committerFuwn <[email protected]>2022-05-15 06:31:20 +0000
commit6deffaad3c096240ea7eef6bcf34aa9a7dc3d8d8 (patch)
tree79234b0770c09c64ab0367e364b4e01a62ead25e
parentdocs(server): documentation ServerConfiguration (diff)
downloadlaurali-0.1.1.tar.xz
laurali-0.1.1.zip
docs(server): Server constructor0.1.1
-rw-r--r--laurali/server.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/laurali/server.ts b/laurali/server.ts
index af656af..b2a2446 100644
--- a/laurali/server.ts
+++ b/laurali/server.ts
@@ -43,6 +43,11 @@ export abstract class Server {
/** The hostname of the `Server` */
static #hostname: string;
+ /**
+ * @param certFile The path to the public key file of the `Server`
+ * @param keyFile The path to the private key file of the `Server`
+ * @param config Extra configuration options of the `Server`
+ */
constructor(
certFile: string,
keyFile: string,