mirror of
https://github.com/google/blockly.git
synced 2026-01-08 09:30:06 +01:00
* feat: add registry for icons * feat: add serialization of custom icons * feat: add deserialization of custom icons * chore: fixup deserialization * chore: export icons registry * chore: add tests for serialization and deserialization * chore: move mocks and helpers to the top level * chore: fix doc error * chore: remove accidental only
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as exceptions from './icons/exceptions.js';
|
|
import * as registry from './icons/registry.js';
|
|
|
|
export {exceptions, registry};
|