mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +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: ...
|