From 43fd13d225bf4e97d5d2d38fdb893cf3b8d5441a Mon Sep 17 00:00:00 2001 From: Vinicius Fortuna Date: Sun, 14 May 2017 17:41:23 -0400 Subject: [PATCH] Make CORS a variable again This fixes the 'Property 'CORS' does not exist' problem. --- types/restify/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/restify/index.d.ts b/types/restify/index.d.ts index bb0db64140..5a6b692570 100644 --- a/types/restify/index.d.ts +++ b/types/restify/index.d.ts @@ -595,7 +595,7 @@ export function auditLogger(options: { log: any }): (req: Request, res: Response export function fullResponse(): RequestHandler; // tslint:disable-next-line no-var export var defaultResponseHeaders: any; -export interface CORS { +export const CORS: { (cors?: { origins?: string[]; credentials?: boolean; @@ -604,7 +604,7 @@ export interface CORS { origins: string[]; ALLOW_HEADERS: string[]; credentials: boolean; -} +}; export const pre: { pause(): RequestHandler;