Патч
All checks were successful
Build And Push / publish (push) Successful in 55s

This commit is contained in:
2025-11-24 03:01:49 +03:00
parent 7c36a938d8
commit 439cb147d8
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,11 @@
from typing import TypedDict
class Notification(TypedDict):
id: int
title: str
description: str
class Notifications(TypedDict):
notifications: list[Notification]