Skip to content

Commit

Permalink
fix(typings): allow CorsOptionsDelegate as cors options (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
vandernorth committed Feb 17, 2022
1 parent 90fb0a9 commit a463d26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/server.ts
Expand Up @@ -9,7 +9,7 @@ import { serialize } from "cookie";
import { Server as DEFAULT_WS_ENGINE } from "ws";
import { IncomingMessage, Server as HttpServer } from "http";
import { CookieSerializeOptions } from "cookie";
import { CorsOptions } from "cors";
import { CorsOptions, CorsOptionsDelegate } from "cors";

const debug = debugModule("engine");

Expand Down Expand Up @@ -105,7 +105,7 @@ export interface ServerOptions {
/**
* the options that will be forwarded to the cors module
*/
cors?: CorsOptions;
cors?: CorsOptions | CorsOptionsDelegate;
/**
* whether to enable compatibility with Socket.IO v2 clients
* @default false
Expand Down

0 comments on commit a463d26

Please sign in to comment.