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;