Spaces:
Sleeping
Sleeping
File size: 396 Bytes
836eb10 |
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
|