Files
blockly/core/serialization/priorities.ts
Beka Westberg ed531ec313 chore: remove all namespace comments (#6903)
* chore: remove all namespace comments

* chore: fix lint
2023-03-20 09:43:58 -07:00

25 lines
449 B
TypeScript

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as goog from '../../closure/goog/goog.js';
goog.declareModuleId('Blockly.serialization.priorities');
/**
* The priority for deserializing variables.
*/
export const VARIABLES = 100;
/**
* The priority for deserializing variable data.
*/
export const PROCEDURES = 75;
/**
* The priority for deserializing blocks.
*/
export const BLOCKS = 50;