mirror of
https://github.com/Genshin-bots/gsuid_core.git
synced 2025-05-08 13:05:47 +08:00
9 lines
213 B
Python
9 lines
213 B
Python
from typing import Dict, Union, Callable, Awaitable, TypedDict
|
|
|
|
from PIL import Image
|
|
|
|
|
|
class PluginStatus(TypedDict):
|
|
icon: Image.Image
|
|
status: Dict[str, Callable[..., Awaitable[Union[str, int, float]]]]
|