6 lines
250 B
TypeScript
6 lines
250 B
TypeScript
|
import { AbstractAudioRenderer } from './abstract_audio_renderer';
|
||
|
import { AuditoryDescription } from './auditory_description';
|
||
|
export declare class StringRenderer extends AbstractAudioRenderer {
|
||
|
markup(descrs: AuditoryDescription[]): string;
|
||
|
}
|