chore: rename all JS files to TS files (#6297)

This commit is contained in:
Beka Westberg
2022-08-01 20:09:51 +00:00
committed by GitHub
parent d86cec9145
commit 27d6760ec6
257 changed files with 0 additions and 0 deletions

28
core/blockly_options.ts Normal file
View File

@@ -0,0 +1,28 @@
/**
* @license
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Object that defines user-specified options for the workspace.
*/
'use strict';
/**
* Object that defines user-specified options for the workspace.
* @namespace Blockly.BlocklyOptions
*/
goog.module('Blockly.BlocklyOptions');
/**
* Blockly options.
* This interface is further described in
* `typings/parts/blockly-interfaces.d.ts`.
* @interface
* @alias Blockly.BlocklyOptions
*/
const BlocklyOptions = function() {};
exports.BlocklyOptions = BlocklyOptions;