9 lines
217 B
Python
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]: ...
|