Spaces:
No application file
No application file
File size: 396 Bytes
b7731cd |
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
|