Spaces:
Running
Running
File size: 396 Bytes
b72ab63 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from typing import Callable
from altair.utils import PluginRegistry
# ==============================================================================
# Vega-Lite to Vega compiler registry
# ==============================================================================
VegaLiteCompilerType = Callable[[dict], dict]
class VegaLiteCompilerRegistry(PluginRegistry[VegaLiteCompilerType]):
pass
|