massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / dateparser / dateparser / calendars / __init__.pyi
1 from typing import Any
2
3 from dateparser.parser import _parser
4
5 class CalendarBase:
6     parser: Any
7     source: Any
8     def __init__(self, source) -> None: ...
9     def get_date(self): ...
10
11 class non_gregorian_parser(_parser):
12     calendar_converter: Any
13     default_year: Any
14     default_month: Any
15     default_day: Any
16     non_gregorian_date_cls: Any
17     @classmethod
18     def to_latin(cls, source): ...
19     @classmethod
20     def parse(cls, datestring, settings): ...