Files
blockly/core/theme/themes.ts
2022-08-01 13:09:51 -07:00

24 lines
409 B
TypeScript

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Namespace for themes.
*/
'use strict';
/**
* Namespace for themes.
* @namespace Blockly.Themes
*/
goog.module('Blockly.Themes');
const {Classic} = goog.require('Blockly.Themes.Classic');
const {Zelos} = goog.require('Blockly.Themes.Zelos');
exports.Classic = Classic;
exports.Zelos = Zelos;