mirror of
https://github.com/google/blockly.git
synced 2025-12-16 06:10:12 +01:00
* fix: export the layer constants. * refactor: remove @internal annotations from layer constants.
18 lines
231 B
TypeScript
18 lines
231 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* The layer to place blocks on.
|
|
*
|
|
*/
|
|
export const BLOCK = 50;
|
|
|
|
/**
|
|
* The layer to place bubbles on.
|
|
*
|
|
*/
|
|
export const BUBBLE = 100;
|