Files
blockly/core/msg.ts
2022-08-01 13:09:51 -07:00

25 lines
410 B
TypeScript

/**
* @license
* Copyright 2013 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Empty name space for the Message singleton.
*/
'use strict';
/**
* Empty name space for the Message singleton.
* @namespace Blockly.Msg
*/
goog.module('Blockly.Msg');
/**
* A dictionary of localised messages.
* @type {!Object<string>}
*/
const Msg = Object.create(null);
exports.Msg = Msg;