x-block-lib 0.8.34 → 0.8.35
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/app/method/index.d.ts +1 -1
- package/dist/core/utils/app/method.d.ts +6 -6
- package/dist/{i18n-en.h3b844ct.js → i18n-en.gy41k67q.js} +1 -0
- package/dist/{i18n-zhHans.mk5971y3.js → i18n-zhHans.jba8gtia.js} +1 -0
- package/dist/index.js +368 -346
- package/package.json +2 -2
- /package/dist/core/blocks/app/method/{implAppMethod → implementAppMethod}/v1/index.d.ts +0 -0
|
@@ -20,10 +20,10 @@ interface MethodInfo {
|
|
|
20
20
|
export declare function getAllCallMethodInfos(nodeId: string): MethodInfo[];
|
|
21
21
|
export declare function getCallMethodInfo(id: string): MethodInfo | undefined;
|
|
22
22
|
export declare function genCallMethodOpts(nodeId: string): Blockly.MenuOption[];
|
|
23
|
-
export declare function
|
|
24
|
-
export declare function
|
|
25
|
-
export declare function
|
|
26
|
-
export declare function
|
|
27
|
-
export declare function
|
|
28
|
-
export declare function
|
|
23
|
+
export declare function getAllImplementMethodInfos(): MethodInfo[];
|
|
24
|
+
export declare function getImplementMethodInfo(id: string): MethodInfo | undefined;
|
|
25
|
+
export declare function genImplementMethodOpts(): Blockly.MenuOption[];
|
|
26
|
+
export declare function getAllImplementMethodOutputInfos(methodId: string): Output[];
|
|
27
|
+
export declare function getImplementMethodOutputInfo(methodId: string, outputKey: string): Output | undefined;
|
|
28
|
+
export declare function genImplementMethodOutputOpts(methodKey: string): Blockly.MenuOption[];
|
|
29
29
|
export {};
|