@vyr/runtime 0.0.25 → 0.0.26

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.
@@ -12,11 +12,17 @@ interface ScriptOption {
12
12
  getDefaultInput(): any;
13
13
  getPropertyOptions?: () => ScriptPropertyOptionsGetters;
14
14
  }
15
+ interface interfaceOption {
16
+ label: string;
17
+ value: string;
18
+ }
15
19
  declare class Template {
16
20
  visible: boolean;
17
21
  }
18
22
  declare class Global {
19
23
  readonly scripts: ScriptOption[];
20
24
  readonly template: Template;
25
+ readonly interfaces: interfaceOption[];
26
+ setInterfaces(interfaces: interfaceOption[]): void;
21
27
  }
22
28
  export { ScriptPropertyOptions, ScriptPropertyOptionsGetters, ScriptOption, Global, };
@@ -7,5 +7,9 @@ declare class Status {
7
7
  }
8
8
  declare class Header {
9
9
  status: Status;
10
+ menus: {
11
+ label: string;
12
+ value: string;
13
+ }[];
10
14
  }
11
15
  export { Header };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vyr/runtime",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": " - Type Declarations",
5
5
  "main": "",
6
6
  "author": "",