mirror of
https://github.com/google/blockly.git
synced 2026-03-03 11:50:11 +01:00
18 lines
369 B
TypeScript
18 lines
369 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2013 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* Empty name space for the Message singleton.
|
|
*
|
|
* @namespace Blockly.Msg
|
|
*/
|
|
import * as goog from '../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.Msg');
|
|
|
|
|
|
/** A dictionary of localised messages. */
|
|
export const Msg: {[key: string]: string} = Object.create(null);
|