mirror of
https://github.com/google/blockly.git
synced 2026-01-26 02:00:10 +01:00
* chore: remove alias comments * chore: format * chore: remove extra newlines * chore: fix bad replaces
28 lines
597 B
TypeScript
28 lines
597 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* An object that provides constants for rendering blocks in the
|
|
* minimalist renderer.
|
|
*
|
|
* @class
|
|
*/
|
|
import * as goog from '../../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.minimalist.ConstantProvider');
|
|
|
|
import {ConstantProvider as BaseConstantProvider} from '../common/constants.js';
|
|
|
|
|
|
/**
|
|
* An object that provides constants for rendering blocks in the sample.
|
|
*/
|
|
export class ConstantProvider extends BaseConstantProvider {
|
|
/** @internal */
|
|
constructor() {
|
|
super();
|
|
}
|
|
}
|