From e5059193ce8a188880b106d71e31799ef8f71640 Mon Sep 17 00:00:00 2001 From: sclausen Date: Tue, 2 Feb 2016 09:27:04 +0100 Subject: [PATCH] fixed wrong argument type of Schema.create --- js-yaml/js-yaml.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js-yaml/js-yaml.d.ts b/js-yaml/js-yaml.d.ts index 78f18ec09..a075171f9 100644 --- a/js-yaml/js-yaml.d.ts +++ b/js-yaml/js-yaml.d.ts @@ -15,7 +15,7 @@ declare module jsyaml { } export class Schema { constructor(definition: SchemaDefinition); - public static create(... any): Schema; + public static create(args: any[]): Schema; } export function safeLoadAll(str: string, iterator: (doc: any) => void, opts?: LoadOptions): any;