Files
Buffteks-Website/buffteks/lib/python3.12/site-packages/altair/utils/compiler.py
2025-05-08 21:10:14 -05:00

13 lines
438 B
Python

from typing import Any, Callable
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