mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-26 08:44:14 +08:00
1acc8f3bd6
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
7 lines
184 B
Python
7 lines
184 B
Python
from typing import Text
|
|
|
|
_SndHeaders = tuple[str, int, int, int, int | str]
|
|
|
|
def what(filename: Text) -> _SndHeaders | None: ...
|
|
def whathdr(filename: Text) -> _SndHeaders | None: ...
|