Skip to content

Commit

Permalink
basic.ts を更新
Browse files Browse the repository at this point in the history
  • Loading branch information
tuna2134 authored May 18, 2023
1 parent 4243256 commit a633c3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/basic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { promises as fs } from "fs";
const client = new Client("http://127.0.0.1:50021");

async function main() {
const audioQuery = await client.createAudioQuery("こんにちは", 0, {});
await audioQuery.synthesis(0, {});
const audioQuery = await client.createAudioQuery("こんにちは", 0);
await audioQuery.synthesis(0);
}

main();

0 comments on commit a633c3e

Please sign in to comment.