mirror of
https://github.com/google/blockly.git
synced 2026-03-03 03:40:11 +01:00
22 lines
357 B
TypeScript
22 lines
357 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* A type used to create flag values.
|
|
*
|
|
* @class
|
|
*/
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.utils.Sentinel');
|
|
|
|
|
|
/**
|
|
* A type used to create flag values.
|
|
*
|
|
* @alias Blockly.utils.Sentinel
|
|
*/
|
|
export class Sentinel {}
|