mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-06-23 17:28:38 +08:00
click-spinner: Replace Any return type (#13970)
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
from typing import Any
|
||||
from typing import TypedDict, type_check_only
|
||||
|
||||
@type_check_only
|
||||
class _Versions(TypedDict):
|
||||
dirty: bool
|
||||
error: None
|
||||
full_revisionid: str
|
||||
version: str
|
||||
|
||||
version_json: str
|
||||
|
||||
def get_versions() -> dict[str, Any]: ...
|
||||
def get_versions() -> _Versions: ...
|
||||
|
||||
Reference in New Issue
Block a user