blockly
Version:
Blockly is a library for building visual programming editors.
24 lines • 764 B
TypeScript
/**
* @license
* Copyright 2013 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/** A dictionary of localised messages. */
export declare const Msg: {
[key: string]: string;
};
/**
* Sets the locale (i.e. the localized messages/block-text/etc) to the given
* locale.
*
* This is not useful/necessary when loading from a script tag, because the
* messages are automatically cluged into the Blockly.Msg object. But we provide
* it in both the script-tag and non-script-tag contexts so that the tscompiler
* can properly create our type definition files.
*
* @param locale An object defining the messages for a given language.
*/
export declare const setLocale: (locale: {
[key: string]: string;
}) => void;
//# sourceMappingURL=msg.d.ts.map