mirror of
https://github.com/google/blockly.git
synced 2026-01-15 04:47:10 +01:00
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.Themes');
|
|
|
|
import {Classic} from './classic.js';
|
|
import {Zelos} from './zelos.js';
|
|
|
|
|
|
export {Classic, Zelos};
|