mirror of
https://github.com/google/blockly.git
synced 2026-05-10 14:10:11 +02:00
3851b14627
* refactor: Migrate to named exports * fix: Sort requires * fix: Remove duplicate deps
24 lines
409 B
JavaScript
24 lines
409 B
JavaScript
/**
|
|
* @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;
|