23 lines
589 B
Python
23 lines
589 B
Python
from collections.abc import Iterable
|
|
from pathlib import Path
|
|
|
|
def generate_sources(
|
|
module: str,
|
|
docs_dir: Path,
|
|
project_name: str | None = None,
|
|
module_is_source: bool | None = None,
|
|
readme_dir: Path | None = None,
|
|
) -> None: ...
|
|
def generate_config(
|
|
docs_dir: Path,
|
|
nav_file: Path,
|
|
template: Path | None,
|
|
out: Path,
|
|
site_name: str,
|
|
modes: Iterable[str] | None = None,
|
|
site_description: str | None = None,
|
|
site_author: str | None = None,
|
|
) -> None: ...
|
|
def build(mkdocs_yml: Path) -> None: ...
|
|
def serve(mkdocs_yml: Path) -> None: ...
|