mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 14:01:56 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
14
django-stubs-generated/utils/dateparse.pyi
Normal file
14
django-stubs-generated/utils/dateparse.pyi
Normal file
@@ -0,0 +1,14 @@
|
||||
from datetime import date, datetime, time, timedelta
|
||||
from typing import Any, Optional
|
||||
|
||||
date_re: Any
|
||||
time_re: Any
|
||||
datetime_re: Any
|
||||
standard_duration_re: Any
|
||||
iso8601_duration_re: Any
|
||||
postgres_interval_re: Any
|
||||
|
||||
def parse_date(value: str) -> Optional[date]: ...
|
||||
def parse_time(value: str) -> Optional[time]: ...
|
||||
def parse_datetime(value: str) -> Optional[datetime]: ...
|
||||
def parse_duration(value: str) -> Optional[timedelta]: ...
|
||||
Reference in New Issue
Block a user