primvoices
Version:
TypeScript client for the Prim Voices API
15 lines (14 loc) • 467 B
TypeScript
import { ClientConfig } from "./types";
import { VoicesAPI } from "./resources/voices";
import { GenerationsAPI } from "./resources/generations";
export * from "./types";
export * from "./resources/voices";
export * from "./resources/generations";
export declare class Client {
private client;
private readonly config;
readonly voices: VoicesAPI;
readonly generations: GenerationsAPI;
constructor(config: ClientConfig);
private handleError;
}