mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
* fix: update definitions for core and blocks * fix: update javascript definition * fix: update JS definition to work with both import types * fix: update typings for blocks
25 lines
507 B
TypeScript
25 lines
507 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Type definitions for Blockly Blocks.
|
|
* @author samelh@google.com (Sam El-Husseini)
|
|
*/
|
|
|
|
/// <reference path="core.d.ts" />
|
|
|
|
export const colour: any;
|
|
export const lists: any;
|
|
export const logic: any;
|
|
export const loops: any;
|
|
export const math: any;
|
|
export const procedures: any;
|
|
export const texts: any;
|
|
export const variables: any;
|
|
export const variablesDynamic: any;
|
|
|
|
export const blocks: any;
|