mirror of
https://github.com/google/blockly.git
synced 2026-01-11 02:47:09 +01:00
This is a copy of https://github.com/google/blockly/pull/5846/files against master, which will fix https://github.com/google/blockly/issues/5841 in the next patch release. When we released v7 we committed to making patch releases for typescript definition errors, since our pipeline for typings was convoluted this quarter.
23 lines
460 B
TypeScript
23 lines
460 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" />
|
|
|
|
import * as Blockly from './core';
|
|
import './blocks';
|
|
import './javascript';
|
|
import './msg/msg';
|
|
|
|
export = Blockly;
|