From 2b35471287e5b70fe12432347db04a25fc65b527 Mon Sep 17 00:00:00 2001 From: Jolse Maginnis Date: Tue, 28 May 2019 13:06:21 +1000 Subject: [PATCH] Add stagingId --- controls/index.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/controls/index.d.ts b/controls/index.d.ts index dd81ed7..e95d657 100644 --- a/controls/index.d.ts +++ b/controls/index.d.ts @@ -106,6 +106,7 @@ interface ControlApi extends ControlParameters { xml: XMLDocument; attachments: Attachment[]; files: FileEntries; + stagingId: string; userId: string; editXml: (edit: (doc: XMLDocument) => XMLDocument) => void; edits: (edits: ItemCommand[]) => Promise; @@ -125,3 +126,5 @@ interface CloudControlRegister { unmount: (removed: Element) => void ) => void; } + +declare const CloudControl: CloudControlRegister;