init docforge lib
This commit is contained in:
18
docforge/exporters/__init__.pyi
Normal file
18
docforge/exporters/__init__.pyi
Normal file
@@ -0,0 +1,18 @@
|
||||
"""Type stubs for doc-forge exporters package."""
|
||||
|
||||
from typing import Any, Dict, List, Optional, Union
|
||||
from pathlib import Path
|
||||
from docforge.model import Project
|
||||
|
||||
class MCPExporter:
|
||||
"""Exports documentation model to MCP JSON format."""
|
||||
|
||||
def __init__(self) -> None: ...
|
||||
|
||||
def export(self, project: Project, out_dir: Path) -> None: ...
|
||||
|
||||
def export_index(self, project: Project, out_dir: Path) -> None: ...
|
||||
|
||||
def export_nav(self, project: Project, out_dir: Path) -> None: ...
|
||||
|
||||
def export_modules(self, project: Project, out_dir: Path) -> None: ...
|
||||
Reference in New Issue
Block a user