mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
14 lines
211 B
Python
14 lines
211 B
Python
from typing import Any
|
|
|
|
class Null: ...
|
|
class Str: ...
|
|
|
|
class Xxo:
|
|
def demo(self) -> None: ...
|
|
|
|
class error: ...
|
|
|
|
def foo(__i: int, __j: int) -> Any: ...
|
|
def new() -> Xxo: ...
|
|
def roj(__b: Any) -> None: ...
|