Files
openapi-first/openapi_first/loader.pyi
Vishesh 'ironeagle' Bangotra 6bafa435f1 using doc-forge (#1)
Reviewed-on: #1
Co-authored-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
Co-committed-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
2026-01-22 11:28:32 +00:00

9 lines
217 B
Python

from pathlib import Path
from typing import Any, Dict, Union
from .errors import OpenAPIFirstError
class OpenAPISpecLoadError(OpenAPIFirstError): ...
def load_openapi(path: Union[str, Path]) -> Dict[str, Any]: ...