mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
8 lines
207 B
Python
8 lines
207 B
Python
from typing import Any
|
|
|
|
__all__ = ["Completer"]
|
|
|
|
class Completer:
|
|
def __init__(self, namespace: dict[str, Any] | None = ...) -> None: ...
|
|
def complete(self, text: str, state: int) -> str | None: ...
|