mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
26 lines
406 B
TypeScript
26 lines
406 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview A type used to create flag values (e.g. SKIP_SETUP).
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* A type used to create flag values.
|
|
* @class
|
|
*/
|
|
goog.module('Blockly.utils.Sentinel');
|
|
|
|
|
|
/**
|
|
* A type used to create flag values.
|
|
* @alias Blockly.utils.Sentinel
|
|
*/
|
|
class Sentinel {}
|
|
|
|
exports.Sentinel = Sentinel;
|