You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
337 B

from typing import Tuple
import numpy
from pygame.mixer import Sound
def array(sound: Sound) -> numpy.ndarray: ...
def samples(sound: Sound) -> numpy.ndarray: ...
def make_sound(array: numpy.ndarray) -> Sound: ...
def use_arraytype(arraytype: str) -> Sound: ...
def get_arraytype() -> str: ...
def get_arraytypes() -> Tuple[str]: ...