x-block-lib 0.9.8 → 0.9.10

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,6 +12,7 @@ interface EventInfo {
12
12
  names: string[];
13
13
  params?: Param[];
14
14
  }
15
+ export declare function isLocaleOfOnEventKind(kind: EventKind | ''): boolean;
15
16
  export declare function getAllOnEventInfos(nodeId: string): EventInfo[];
16
17
  export declare function getOnEventInfo(id: string): EventInfo | undefined;
17
18
  export declare function genOnEventOpts(nodeId: string): Blockly.MenuOption[];
@@ -13,9 +13,11 @@ interface MethodInfo {
13
13
  inputs?: Field[];
14
14
  outputs?: Field[];
15
15
  }
16
+ export declare function isLocaleOfCallMethodKind(kind: MethodKind | ''): boolean;
16
17
  export declare function getAllCallMethodInfos(nodeId: string): MethodInfo[];
17
18
  export declare function getCallMethodInfo(id: string): MethodInfo | undefined;
18
19
  export declare function genCallMethodOpts(nodeId: string): Blockly.MenuOption[];
20
+ export declare function isLocaleOfImplementMethodKind(kind: MethodKind | ''): boolean;
19
21
  export declare function getAllImplementMethodInfos(nodeId: string): MethodInfo[];
20
22
  export declare function getImplementMethodInfo(id: string): MethodInfo | undefined;
21
23
  export declare function genImplementMethodOpts(nodeId: string): Blockly.MenuOption[];