Files
blockly/generators/lua/variables_dynamic.ts
Blake Thomas Williams dc61e487b4 refactor(generators): Migrate Lua generators to TypeScript (#7654)
* refactor(generators): Migrate lua_generator.js to TypeScript

* refactor(generators): Migrate generators/lua/* to TypeScript

* fix(generators): Fix type errors in generator functions

* refactor(generators): Migrate generators/lua.js to TypeScript

* chore(generator): Format

* chore(generators): JSDoc and formatting tweaks for PR #7654

---------

Co-authored-by: Christopher Allen <cpcallen+git@google.com>
2023-11-20 18:46:32 +00:00

18 lines
354 B
TypeScript

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file Generating Lua for dynamic variable blocks.
*/
// Former goog.module ID: Blockly.Lua.variablesDynamic
// Lua is dynamically typed.
export {
variables_get as variables_get_dynamic,
variables_set as variables_set_dynamic,
} from './variables.js';