x-block-lib 0.7.16 → 0.7.17

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.
@@ -4,4 +4,3 @@ export declare function spawnPropDomV1(prop: ZProp): Element | null;
4
4
  export declare function spawnPropBlockV1(workspace: Blockly.Workspace, prop: ZProp): Blockly.Block | null;
5
5
  export declare function spawnColumnDomV1(type: string): Element | null;
6
6
  export declare function spawnColumnBlockV1(workspace: Blockly.Workspace, type: string): Blockly.Block | null;
7
- export declare function getPropCheck(prop: ZProp): string | null;
@@ -0,0 +1,4 @@
1
+ import { ZProp } from 'x-runtime-lib';
2
+ export declare function getParamCheck(type: string): "Boolean" | "String" | "Number" | "Array" | "Object" | null;
3
+ export declare function getPropCheck(prop: ZProp): string | null;
4
+ export declare function getColumnCheck(type: string): "Boolean" | "String" | "Number" | null;
@@ -1,3 +1,4 @@
1
1
  export * from './block';
2
+ export * from './check';
2
3
  export * from './misc';
3
4
  export * from './parameter';