x-block-lib 0.6.38 → 0.6.39
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.
- package/dist/core/blocks/resource/index.d.ts +3 -0
- package/dist/core/locale/msg/en.d.ts +1 -0
- package/dist/core/locale/msg/zhHans.d.ts +1 -0
- package/dist/core/utils/compute/space.d.ts +2 -2
- package/dist/index.js +2827 -2606
- package/dist/{msg-en-knn7v47g.js → msg-en-oemnvcna.js} +1 -0
- package/dist/{msg-zhHans-fs6i60zj.js → msg-zhHans-euou0pwe.js} +1 -0
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as Blockly from 'blockly/core';
|
|
2
2
|
import { ComputeSpace } from 'x-state-lib';
|
|
3
3
|
type Filter = 'func' | 'flow';
|
|
4
|
-
export declare function getAllSpaceInfos(filter
|
|
4
|
+
export declare function getAllSpaceInfos(filter: Filter): ComputeSpace[];
|
|
5
5
|
export declare function getSpaceInfo(id: string): ComputeSpace | undefined;
|
|
6
|
-
export declare function genSpaceOpts(): Blockly.MenuOption[];
|
|
6
|
+
export declare function genSpaceOpts(filter: Filter): Blockly.MenuOption[];
|
|
7
7
|
export {};
|