mirror of
https://github.com/google/blockly.git
synced 2025-12-16 06:10:12 +01:00
* fix: add layer manager to fix dragging * chore: fix block animations * chore: add tests * chore: format
20 lines
257 B
TypeScript
20 lines
257 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* The layer to place blocks on.
|
|
*
|
|
* @internal
|
|
*/
|
|
export const BLOCK = 50;
|
|
|
|
/**
|
|
* The layer to place bubbles on.
|
|
*
|
|
* @internal
|
|
*/
|
|
export const BUBBLE = 100;
|