chore: add StyledStr::destyle

This commit is contained in:
Shunsuke Shibayama 2024-10-11 21:27:32 +09:00
parent e1adb8d118
commit f6144b29a2
2 changed files with 36 additions and 1 deletions

View file

@ -1,9 +1,18 @@
.available_zones: Set Str, _
.available_timezones: () -> Set(Str, _)
.reset_tzpath!: (to := Sequence(Str) or PathLike) => NoneType
.TZPATH: [Str; _]
.ZoneInfoNotFoundError: ClassType
.ZoneInfoNotFoundError <: Exception
.InvalidTZPathWarning: ClassType
.InvalidTZPathWarning <: Warning
.ZoneInfo: ClassType
.ZoneInfo.
key: Str
__call__: (key: Str) -> .ZoneInfo
from_file: (fobj: FileLike, key := Str) -> .ZoneInfo
no_cache: (key: Str) -> .ZoneInfo
clear_cache!: () => NoneType
__str__: (self: .ZoneInfo) -> Str