feat: add type stubs for cli, codegen, and security modules

This commit is contained in:
2026-09-12 15:29:04 +05:30
parent 6e3939d68c
commit cb231a9c7e
6 changed files with 46 additions and 2 deletions

7
openapi_first/cli.pyi Normal file
View File

@@ -0,0 +1,7 @@
from pathlib import Path
DEFAULT_TEMPLATE: str
def available_templates() -> list[str]: ...
def copy_template(template: str, target_dir: Path) -> None: ...
def main() -> None: ...