From 6b655c787fb110c486b49f9b16eaeb8a799b3df8 Mon Sep 17 00:00:00 2001 From: yupix Date: Thu, 8 Dec 2022 13:16:33 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20ISignin=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mipac/types/user.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mipac/types/user.py b/mipac/types/user.py index 266cd10a..c1307a95 100644 --- a/mipac/types/user.py +++ b/mipac/types/user.py @@ -16,6 +16,13 @@ 'IUserDetailedField', ) +class ISignin(TypedDict): + id: str + created_at: str + user_id: str + ip: str + headers: dict[str, str] + success: bool class IUserRequired(TypedDict): id: str