From 1227b91a13a8f0b5b9a742e60efcca336e1f9fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B3=B0=E9=A9=B0?= Date: Fri, 27 Jul 2018 18:15:56 +0800 Subject: [PATCH] make opts in constructor optional --- lib/core.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core.d.ts b/lib/core.d.ts index d2e0316..e0826ec 100644 --- a/lib/core.d.ts +++ b/lib/core.d.ts @@ -38,6 +38,6 @@ declare namespace Core { apiVersion: string; accessKeyId: string; accessKeySecret: string; - opts: object; + opts?: object; } }