blockly
Version:
Blockly is a library for building visual programming editors.
18 lines • 516 B
TypeScript
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file Instantiate a DartGenerator and populate it with the complete
* set of block generator functions for Dart. This is the entrypoint
* for dart_compressed.js.
*/
import { DartGenerator } from './dart/dart_generator.js';
export * from './dart/dart_generator.js';
/**
* Dart code generator instance.
* @type {!DartGenerator}
*/
export declare const dartGenerator: DartGenerator;
//# sourceMappingURL=dart.d.ts.map