8 lines
245 B
Python
8 lines
245 B
Python
from typing import Any
|
|
|
|
def parse_security_schemes(spec: dict[str, Any]) -> dict[str, dict[str, Any]]: ...
|
|
def make_security_dependencies(
|
|
spec: dict[str, Any],
|
|
security_schemes: dict[str, dict[str, Any]],
|
|
) -> dict[str, list[Any]]: ...
|