Source code for file.types

from typing import TYPE_CHECKING
if TYPE_CHECKING:
    from typing import Any
    from typing_extensions import TypedDict

[docs] class SignatureMetadata(TypedDict):
[docs] old_digest: str
[docs] new_digest: str
[docs] signee: str
[docs] timestamp: str
[docs] request_id: str
[docs] token: str
[docs] token_type: str
class FileStats(TypedDict): pages: int words: int class SigningServiceConfig(TypedDict): name: str parameters: dict[str, Any]