From 0e5a2168170ec69aa8712d7cd2161b9cb607a56d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabio=20Jos=C3=A9?= Date: Tue, 29 Oct 2019 10:09:41 -0300 Subject: [PATCH] Cloudevent class constructor args MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabio José --- v1/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1/index.d.ts b/v1/index.d.ts index e37a1e8..f54d219 100644 --- a/v1/index.d.ts +++ b/v1/index.d.ts @@ -2,7 +2,7 @@ * CloudEvent class definition */ export class Cloudevent { - public constructor(); + public constructor(spec?: any, formatter?: any); public format(): any; public toString(): string;