Files
Buffteks-Website/streamlit-venv/lib/python3.10/site-packages/altair/utils/compiler.py
2025-01-10 21:40:35 +00:00

13 lines
444 B
Python
Executable File

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