geored's picture
Upload folder using huggingface_hub
add8f0b verified
raw
history blame
396 Bytes
from typing import Callable
from altair.utils import PluginRegistry
# ==============================================================================
# Vega-Lite to Vega compiler registry
# ==============================================================================
VegaLiteCompilerType = Callable[[dict], dict]
class VegaLiteCompilerRegistry(PluginRegistry[VegaLiteCompilerType]):
pass