summaryrefslogtreecommitdiff
path: root/ffxiv/pystone/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'ffxiv/pystone/types.py')
-rw-r--r--ffxiv/pystone/types.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/ffxiv/pystone/types.py b/ffxiv/pystone/types.py
new file mode 100644
index 0000000..5fa7da6
--- /dev/null
+++ b/ffxiv/pystone/types.py
@@ -0,0 +1,11 @@
+from typing import Dict, Literal, Union, TypedDict
+
+LangOptions = Literal['en']
+Definition = Dict[str, Union[str, Dict[str, str]]]
+
+
+class MetaDict(TypedDict):
+ version: str
+ userAgentDesktop: str
+ userAgentMobile: str
+ applicableUris: Dict[str, str]