mirror of
https://github.com/google/blockly.git
synced 2026-05-09 13:40:11 +02:00
18 lines
347 B
TypeScript
18 lines
347 B
TypeScript
/** @fileoverview Empty name space for the Message singleton. */
|
|
|
|
/**
|
|
* @license
|
|
* Copyright 2013 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
/**
|
|
* Empty name space for the Message singleton.
|
|
* @namespace Blockly.Msg
|
|
*/
|
|
|
|
|
|
/** A dictionary of localised messages. */
|
|
export const Msg: {[key: string]: string} = Object.create(null);
|