mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
19 lines
433 B
Python
19 lines
433 B
Python
from typing import (
|
|
Optional,
|
|
Tuple,
|
|
)
|
|
|
|
|
|
def get_complete_version(version: Optional[Tuple[int, int, int, str, int]] = ...) -> Tuple[int, int, int, str, int]: ...
|
|
|
|
|
|
def get_docs_version(version: None = ...) -> str: ...
|
|
|
|
|
|
def get_git_changeset() -> str: ...
|
|
|
|
|
|
def get_main_version(version: Tuple[int, int, int, str, int] = ...) -> str: ...
|
|
|
|
|
|
def get_version(version: Optional[Tuple[int, int, int, str, int]] = ...) -> str: ... |