Introduce TypeAlias everywhere (#869)

* Introduce TypeAlias everywhere

* Undo changes
This commit is contained in:
Henry Ruhs
2025-02-12 19:47:58 +01:00
committed by henryruhs
parent 7dbe17596f
commit 944306a19c
3 changed files with 76 additions and 76 deletions

View File

@@ -1,8 +1,8 @@
from typing import Any, Dict, IO, Literal
from typing import Any, Dict, IO, Literal, TypeAlias
File = IO[Any]
Component = Any
ComponentOptions = Dict[str, Any]
File : TypeAlias = IO[Any]
Component : TypeAlias = Any
ComponentOptions : TypeAlias = Dict[str, Any]
ComponentName = Literal\
[
'age_modifier_direction_slider',