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
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/dateparser/dateparser/calendars/jalali_parser.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/dateparser/dateparser/calendars/jalali_parser.pyi
new file mode 100644 (file)
index 0000000..e642ba2
--- /dev/null
@@ -0,0 +1,17 @@
+from typing import Any
+
+from dateparser.calendars import non_gregorian_parser
+
+class PersianDate:
+    year: Any
+    month: Any
+    day: Any
+    def __init__(self, year, month, day) -> None: ...
+    def weekday(self): ...
+
+class jalali_parser(non_gregorian_parser):
+    calendar_converter: Any
+    default_year: int
+    default_month: int
+    default_day: int
+    non_gregorian_date_cls: Any