json.py 117 B

123456789
  1. # (c) Nelen & Schuurmans
  2. from typing import Any
  3. from typing import Dict
  4. __all__ = ["Json"]
  5. Json = Dict[str, Any]