From d9f40c4222be936dea4ffb5415761c4eec56f109 Mon Sep 17 00:00:00 2001 From: yupix Date: Tue, 30 Aug 2022 05:40:26 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20IAds=20=E3=82=BF=E3=82=A4=E3=83=97?= =?UTF-8?q?=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mipac/types/ads.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 mipac/types/ads.py diff --git a/mipac/types/ads.py b/mipac/types/ads.py new file mode 100644 index 00000000..38285e2a --- /dev/null +++ b/mipac/types/ads.py @@ -0,0 +1,9 @@ +from typing import TypedDict + + +class IAds(TypedDict): + id: str + ratio: int + place: str + url: str + image_url: str \ No newline at end of file