Files
blockly/core/layers.ts
Aaron Dodson 8323642d0e fix: export the layer constants. (#8256)
* fix: export the layer constants.

* refactor: remove @internal annotations from layer constants.
2024-07-09 15:25:20 -07:00

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;