We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de3f5af commit c5177f6Copy full SHA for c5177f6
packages/plugin-node/src/echogarden.d.ts
@@ -0,0 +1,20 @@
1
+declare module "echogarden" {
2
+ interface SynthesizeOptions {
3
+ engine: string;
4
+ voice: string;
5
+ }
6
+
7
+ interface RawAudio {
8
+ audioChannels: { buffer: ArrayBuffer }[];
9
+ sampleRate: number;
10
11
12
+ interface SynthesizeResult {
13
+ audio: Buffer | RawAudio;
14
15
16
+ export function synthesize(
17
+ text: string,
18
+ options: SynthesizeOptions
19
+ ): Promise<SynthesizeResult>;
20
+}
packages/plugin-node/tsconfig.json
@@ -5,5 +5,5 @@
"rootDir": "src",
"types": ["node"]
},
- "include": ["src/**/*.ts"]
+ "include": ["src/**/*.ts", "src/**/*.d.ts"]
}
0 commit comments