blockly
Version:
Blockly is a library for building visual programming editors.
17 lines • 448 B
TypeScript
/**
* @license
* Copyright 2013 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* A block definition. For now this very loose, but it can potentially
* be refined e.g. by replacing this typedef with a class definition.
*/
export type BlockDefinition = any;
/**
* A mapping of block type names to block prototype objects.
*/
export declare const Blocks: {
[key: string]: BlockDefinition;
};
//# sourceMappingURL=blocks.d.ts.map