Skip to content

Commit

Permalink
update server types (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaa authored Nov 8, 2023
1 parent 21e1796 commit 968f618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default class Server {
events: Events<ServerEvent> = new Events<ServerEvent>();
options: Options;
middlewares: Middleware[] = [];
#server?: Deno.Server;
#server?: Deno.HttpServer;

constructor(options: Partial<Options> = {}) {
this.options = { ...defaults, ...options };
Expand Down

0 comments on commit 968f618

Please sign in to comment.