Files
blockly/core/utils/sentinel.js
Aaron Dodson 1647a3299a fix: Move @alias onto classes instead of constructors (#6003)
* fix: Move @alias onto classes instead of constructors

* fix: Fix JSDoc for constructors.
2022-03-16 15:48:32 -07:00

26 lines
406 B
JavaScript

/**
* @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;