@juspay/neurolink 9.55.2 → 9.55.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1109,3 +1109,13 @@ export type SonioxMessage = {
1109
1109
  export type ClientControlMessage = {
1110
1110
  type?: string;
1111
1111
  };
1112
+ /**
1113
+ * Structural type for Picovoice Cobra VAD instance.
1114
+ * Defined here so the optional `@picovoice/cobra-node` package
1115
+ * is not required at typecheck time.
1116
+ */
1117
+ export type CobraInstance = {
1118
+ frameLength: number;
1119
+ process: (pcm: Int16Array) => number;
1120
+ release: () => void;
1121
+ };