x-block-lib 0.8.67 → 0.8.68

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.
@@ -5,7 +5,7 @@ interface NodeInfo {
5
5
  name: string;
6
6
  alias: string;
7
7
  }
8
- type Filter = 'triggerEvent' | 'onEvent' | 'implementMethod' | 'callMethod' | 'getProperty' | 'setProperty';
8
+ type Filter = 'onEvent' | 'triggerEvent' | 'callMethod' | 'implementMethod' | 'getProperty' | 'setProperty';
9
9
  export declare function isAvailOfNode(filter: Filter): boolean;
10
10
  export declare function getAllNodeInfos(filter: Filter): NodeInfo[];
11
11
  export declare function getNodeInfo(nodeid: string): NodeInfo | undefined;