Files
typeshed/stdlib/@python2/sndhdr.pyi

7 lines
197 B
Python

from typing import Text, Union
_SndHeaders = tuple[str, int, int, int, Union[int, str]]
def what(filename: Text) -> _SndHeaders | None: ...
def whathdr(filename: Text) -> _SndHeaders | None: ...