JAMESPARK3's picture
Upload folder using huggingface_hub
1380717 verified
raw
history blame
444 Bytes
from typing import Any, Callable, Dict
from altair.utils import PluginRegistry
# ==============================================================================
# Vega-Lite to Vega compiler registry
# ==============================================================================
VegaLiteCompilerType = Callable[[Dict[str, Any]], Dict[str, Any]]
class VegaLiteCompilerRegistry(PluginRegistry[VegaLiteCompilerType, Dict[str, Any]]):
pass