mirror of
https://github.com/google/blockly.git
synced 2026-05-12 23:20:10 +02:00
7e4e6c7286
* Add typings modules to match UMD modules.
23 lines
458 B
TypeScript
23 lines
458 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/en.d.ts" />
|
|
|
|
import * as Blockly from './core';
|
|
import './blocks';
|
|
import './javascript';
|
|
import './msg/en';
|
|
|
|
export = Blockly;
|