mirror of
https://github.com/google/blockly.git
synced 2026-05-13 07:30:10 +02:00
22 lines
294 B
TypeScript
22 lines
294 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Namespace for themes.
|
|
*/
|
|
|
|
/**
|
|
* Namespace for themes.
|
|
* @namespace Blockly.Themes
|
|
*/
|
|
|
|
|
|
import {Classic} from './classic';
|
|
import {Zelos} from './zelos';
|
|
|
|
|
|
export {Classic, Zelos};
|