| 1 | interface SnowboyDetectNativeInterface { |
| 2 | new (resource: string, models: string): SnowboyDetectNativeInterface; |
| 3 | Reset(): boolean; |
| 4 | RunDetection(audioData: Buffer): number; |
| 5 | SetSensitivity(sensitivity: string): void; |
| 6 | SetHighSensitivity(highSensitivity: string): void; |
| 7 | GetSensitivity(): string; |
| 8 | SetAudioGain(audioGain: number): void; |
| 9 | UpdateModel(): void; |
| 10 | NumHotwords(): number; |
| 11 | SampleRate(): number; |
| 12 | NumChannels(): number; |
| 13 | BitsPerSample(): number; |
| 14 | ApplyFrontend(applyFrontend: boolean): void; |
| 15 | } |
no outgoing calls
no test coverage detected