aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--laurali/server.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/laurali/server.ts b/laurali/server.ts
index 71f0fd7..af656af 100644
--- a/laurali/server.ts
+++ b/laurali/server.ts
@@ -18,10 +18,12 @@
import { Hook } from "./hooks.ts";
+/** Configuration options of a `Server` */
export interface ServerConfiguration {
+ /** The port a `Server` will listen on */
port?: number;
+ /** The hostname a `Server` will identify as */
hostname?: string;
- logger?: boolean;
}
/** The base Laurali server to be extended upon */