add first structure

This commit is contained in:
2026-09-20 02:08:11 +02:00
parent 9e9a82e74e
commit c93792ccd7
17 changed files with 1433 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from typing import IO, Any
import click
def generate_schema_from_click(
cmd: click.Group | click.Command,
additional_properties: bool,
) -> dict[str, Any]: ...
def generate_node_from_click(
cmd: click.Group | click.Command,
additional_properties: bool,
) -> dict[str, Any]: ...
@click.command
def main(schemastore: bool, outfile: IO[str]) -> None: ...