@adobe/ccweb-add-on-sdk-types 1.2.1 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/ui/ui-sdk.d.ts +6 -1
package/package.json
CHANGED
package/ui/ui-sdk.d.ts
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
/**
|
|
26
26
|
* Base interface for all type of add-ons
|
|
27
27
|
*/
|
|
28
|
-
export declare interface AddOn {
|
|
28
|
+
export declare interface AddOn extends AddOnBase {
|
|
29
29
|
/**
|
|
30
30
|
* Represents the current add-on runtime
|
|
31
31
|
*/
|
|
@@ -40,6 +40,11 @@ export declare interface AddOn {
|
|
|
40
40
|
readonly clientStorage: ClientStorage;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
+
/**
|
|
44
|
+
* Interface that represents the APIs directly exposed by the AddOn interface
|
|
45
|
+
*/
|
|
46
|
+
declare interface AddOnBase {}
|
|
47
|
+
|
|
43
48
|
/**
|
|
44
49
|
* @public
|
|
45
50
|
* The main API Interface exposed by this SDK to the consuming Add-on code.
|