Tejasw1's picture
Upload folder using huggingface_hub
2d1874a verified
raw
history blame contribute delete
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