summaryrefslogtreecommitdiffstats
path: root/g4f/typing.py
blob: 5d4489f9764129e6d36b79a824b930c67dfb71ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from typing import Any, AsyncGenerator, Generator, NewType, Tuple, TypedDict

SHA256 = NewType("sha_256_hash", str)
CreateResult = Generator[str, None, None]


__all__ = [
    "Any",
    "AsyncGenerator",
    "Generator",
    "Tuple",
    "TypedDict",
    "SHA256",
    "CreateResult",
]