You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ja...@apache.org on 2021/04/06 15:00:32 UTC

[openwhisk-client-js] branch master updated: Adding missing main property to Exec type (#222)

This is an automated email from the ASF dual-hosted git repository.

jamesthomas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-client-js.git


The following commit(s) were added to refs/heads/master by this push:
     new d366830  Adding missing main property to Exec type (#222)
d366830 is described below

commit d366830246241810e5c8b332669b2876e704104f
Author: James Thomas <ja...@jamesthom.as>
AuthorDate: Tue Apr 6 16:00:10 2021 +0100

    Adding missing main property to Exec type (#222)
---
 lib/main.d.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/main.d.ts b/lib/main.d.ts
index 6e3c4ad..b6fedb6 100644
--- a/lib/main.d.ts
+++ b/lib/main.d.ts
@@ -248,7 +248,8 @@ declare namespace openwhisk {
     interface Exec {
         kind: Kind;
         code: string;
-        binary?: boolean
+        binary?: boolean;
+        main?: string;
     }
 
     interface Sequence {