@web-applets/sdk 0.0.4 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types.d.ts +7 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
@@ -15,9 +15,13 @@ export interface AppletHeader {
|
|
15
15
|
name: string;
|
16
16
|
description: string;
|
17
17
|
url: string;
|
18
|
-
|
19
|
-
|
20
|
-
|
18
|
+
actions: {
|
19
|
+
id: string;
|
20
|
+
description: string;
|
21
|
+
params: {
|
22
|
+
[key: string]: string;
|
23
|
+
};
|
24
|
+
}[];
|
21
25
|
}
|
22
26
|
export type AppletState = Record<string, Serializable>;
|
23
27
|
export type ActionParamSchema = Record<string, {
|