x-runtime-lib 0.8.189 → 0.8.191

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.
@@ -1,3 +1,6 @@
1
- import { ZElement, ZElements } from '@/types';
2
- export declare const elements: ZElements;
1
+ import { ZElement, ZElementKey, ZElements, ZProperty } from '@/types';
3
2
  export declare const regElement: (element: ZElement) => void;
3
+ export declare function getAllElements(): ZElements;
4
+ export declare function getElement(key: ZElementKey | string): ZElement | undefined;
5
+ export declare function getElementMust(key: ZElementKey): ZElement;
6
+ export declare function getProperties(element: ZElement, type: string, subtype: string): ZProperty[];