This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import express from "express";
|
||||
import express, { Express } from "express";
|
||||
|
||||
type ServerType = {
|
||||
/**
|
||||
@ -10,7 +10,7 @@ type ServerType = {
|
||||
onLoaded?: () => void;
|
||||
};
|
||||
|
||||
export function createServer({ port = 3000, onLoaded }: ServerType) {
|
||||
export function createServer({ port = 3000, onLoaded }: ServerType): Express {
|
||||
if (typeof port === "string") {
|
||||
port = Number(port);
|
||||
if (isNaN(port)) {
|
||||
|
Reference in New Issue
Block a user