refactor: 部分更改数据结构

This commit is contained in:
2025-12-28 06:16:21 +08:00
parent ddcebb6dcd
commit 82560ef4e7
5 changed files with 211 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from typing import Any, Iterable, TypedDict
from typing_extensions import Self
from .lict import Lict
class ParticalsContainer(TypedDict):
nucleons: Lict
electrons: Lict
atoms: Lict