File: __init__.pyi

package info (click to toggle)
bespokesynth 1.3.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 44,592 kB
  • sloc: cpp: 117,136; ansic: 18,752; python: 593; xml: 74; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from __future__ import annotations

def get(path) -> sampleplayer:
   pass

class sampleplayer:
   def set_cue_point(this, pitch, startSeconds, lengthSeconds, speed):
      pass

   def fill(this, data):
      pass

   def play_cue(this, cue, speedMult = 1, startOffsetSeconds = 0):
      pass

   def get_length_seconds(this, ):
      pass