summaryrefslogtreecommitdiff
path: root/ffxiv/pystone/types.py
blob: 5fa7da603817764fa58f66ad70f67894d71937cc (plain)
1
2
3
4
5
6
7
8
9
10
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]