mirror of
https://github.com/google/blockly.git
synced 2026-01-09 01:50:11 +01:00
21 lines
461 B
TypeScript
21 lines
461 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Type definitions for Blockly.
|
|
* @author samelh@google.com (Sam El-Husseini)
|
|
*/
|
|
|
|
/// <reference path="core.d.ts" />
|
|
/// <reference path="blocks.d.ts" />
|
|
/// <reference path="javascript.d.ts" />
|
|
/// <reference path="msg/msg.d.ts" />
|
|
|
|
export * from './core';
|
|
export * as libraryBlocks from './blocks';
|
|
export const JavaScript: any;
|
|
import './msg/msg';
|