12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import { SunoClient } from './client';
|
|
export declare class ToolHandlers {
|
|
private readonly client;
|
|
constructor(client: SunoClient);
|
|
handle(name: string, args: unknown): Promise<{
|
|
content: {
|
|
type: string;
|
|
text: string;
|
|
}[];
|
|
}>;
|
|
}
|
|
//# sourceMappingURL=handlers.d.ts.map
|