link.py 154 B

1234567891011
  1. # (c) Nelen & Schuurmans
  2. from typing import TypedDict
  3. from pydantic import AnyHttpUrl
  4. __all__ = ["Link"]
  5. class Link(TypedDict):
  6. href: AnyHttpUrl