18 lines
413 B
Python
18 lines
413 B
Python
from pathlib import Path
|
|
from typing import Set
|
|
|
|
from docforge.models import Project, Module
|
|
|
|
|
|
class MkDocsRenderer:
|
|
name: str
|
|
|
|
def generate_sources(self, project: Project, out_dir: Path) -> None: ...
|
|
def _write_module(
|
|
self,
|
|
module: Module,
|
|
packages: Set[str],
|
|
out_dir: Path,
|
|
) -> None: ...
|
|
def _render_markdown(self, title: str, module_path: str) -> str: ...
|