blockly
Version:
Blockly is a library for building visual programming editors.
17 lines (13 loc) • 334 B
TypeScript
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Type definitions for the Python generator.
* @author samelh@google.com (Sam El-Husseini)
*/
/// <reference path="core.d.ts" />
import * as Blockly from './core';
declare const python: Blockly.Generator;
export = python;