7 lines
312 B
Python
7 lines
312 B
Python
from pathlib import Path
|
|
|
|
def generate_sources(module: str, project_name: str | None, docs_dir: Path) -> None: ...
|
|
def generate_config(docs_dir: Path, nav_file: Path, template: Path | None, out: Path, site_name: str) -> None: ...
|
|
def build(mkdocs_yml: Path) -> None: ...
|
|
def serve(mkdocs_yml: Path) -> None: ...
|