blockly
Version:
Blockly is a library for building visual programming editors.
14 lines • 771 B
TypeScript
/**
* @license
* Copyright 2012 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type { Block } from '../../core/block.js';
import type { PythonGenerator } from './python_generator.js';
export declare function controls_repeat_ext(block: Block, generator: PythonGenerator): string;
export declare const controls_repeat: typeof controls_repeat_ext;
export declare function controls_whileUntil(block: Block, generator: PythonGenerator): string;
export declare function controls_for(block: Block, generator: PythonGenerator): string;
export declare function controls_forEach(block: Block, generator: PythonGenerator): string;
export declare function controls_flow_statements(block: Block, generator: PythonGenerator): string;
//# sourceMappingURL=loops.d.ts.map