massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / sndhdr.pyi
1 from _typeshed import StrOrBytesPath
2 from typing import NamedTuple
3
4 class SndHeaders(NamedTuple):
5     filetype: str
6     framerate: int
7     nchannels: int
8     nframes: int
9     sampwidth: int | str
10
11 def what(filename: StrOrBytesPath) -> SndHeaders | None: ...
12 def whathdr(filename: StrOrBytesPath) -> SndHeaders | None: ...