mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
chore: rename all JS files to TS files (#6297)
This commit is contained in:
24
core/msg.ts
Normal file
24
core/msg.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* @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;
|
||||
Reference in New Issue
Block a user