mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 05:24:53 +08:00
7 lines
231 B
Python
7 lines
231 B
Python
from datetime import timedelta
|
|
from typing import Any, Optional
|
|
|
|
def duration_string(duration: timedelta) -> str: ...
|
|
def duration_iso_string(duration: timedelta) -> str: ...
|
|
def duration_microseconds(delta: timedelta) -> int: ...
|