massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / dateparser / dateparser / calendars / jalali_parser.pyi
1 from typing import Any
2
3 from dateparser.calendars import non_gregorian_parser
4
5 class PersianDate:
6     year: Any
7     month: Any
8     day: Any
9     def __init__(self, year, month, day) -> None: ...
10     def weekday(self): ...
11
12 class jalali_parser(non_gregorian_parser):
13     calendar_converter: Any
14     default_year: int
15     default_month: int
16     default_day: int
17     non_gregorian_date_cls: Any