Skip to content

Commit

Permalink
Merge pull request #162 from rainzee/feat/typing-module
Browse files Browse the repository at this point in the history
feat: impl `typing` module
  • Loading branch information
ChinaIceF authored Oct 24, 2024
2 parents 0ee48bd + 344b2cf commit a624c65
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions siui/typing.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""
## This module defines global shared types
Use Python's Type Hint syntax, reference:
- [`typing`](https://docs.python.org/3/library/typing.html)
- [`PEP 484`](https://www.python.org/dev/peps/pep-0484/)
- [`PEP 526`](https://www.python.org/dev/peps/pep-0526/)
"""

from typing_extensions import TypeAlias

0 comments on commit a624c65

Please sign in to comment.