blockly
Version:
Blockly is a library for building visual programming editors.
20 lines • 502 B
TypeScript
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* The priority for deserializing variables.
*/
export declare const VARIABLES = 100;
/**
* The priority for deserializing variable data.
*/
export declare const PROCEDURES = 75;
/**
* The priority for deserializing blocks.
*/
export declare const BLOCKS = 50;
/** The priority for deserializing workspace comments. */
export declare const WORKSPACE_COMMENTS = 25;
//# sourceMappingURL=priorities.d.ts.map