We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fa5612 commit d3fe869Copy full SHA for d3fe869
src/blocks/mrc_port.ts
@@ -34,9 +34,9 @@ export const OUTPUT_NAME = 'mrc_port';
34
type PortBlock = Blockly.Block & PortMixin;
35
interface PortMixin extends PortMixinType {
36
}
37
-type PortMixinType = typeof COMPONENT;
+type PortMixinType = typeof PORT;
38
39
-const COMPONENT = {
+const PORT = {
40
/**
41
* Block initialization.
42
*/
@@ -52,7 +52,7 @@ const COMPONENT = {
52
53
54
export const setup = function () {
55
- Blockly.Blocks[BLOCK_NAME] = COMPONENT;
+ Blockly.Blocks[BLOCK_NAME] = PORT;
56
57
58
export const pythonFromBlock = function (
0 commit comments