UNPKG

@pedroloch/tuner

Version:

A javascript library to create a chromatic tuner that uses the ml5 pitch detection algorithm.

8 lines (7 loc) 222 B
declare const createTuner: () => { start: () => Promise<void>; stop: () => void; getData: (callback: (event: import("./interfaces").TunerData) => any) => void; isOn: boolean; }; export default createTuner;