site/node_modules/speech-rule-engine/js/audio/span.d.ts

10 lines
191 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
export declare class Span {
speech: string;
attributes: {
[key: string]: string;
};
constructor(speech: string, attributes: {
[key: string]: string;
});
}