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