chore: IMutedUserの型を修正

pull/109/head
yupix 7 months ago
parent bca4dd6719
commit c5109ba727
No known key found for this signature in database
GPG Key ID: 2FF705F5C56D9C06

@ -3,12 +3,12 @@ from __future__ import annotations
from typing import TYPE_CHECKING, TypedDict
if TYPE_CHECKING:
from mipac.types.user import IUserDetailed
from mipac.types.user import IUserDetailedNotMeSchema
class IMutedUser(TypedDict):
class IMutedUser(TypedDict): # TODO: Mutingに変更
id: str
created_at: str
expires_at: str | None
mutee_id: str
mutee: IUserDetailed
mutee: IUserDetailedNotMeSchema

Loading…
Cancel
Save