10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
export declare class Span {
|
|
speech: string;
|
|
attributes: {
|
|
[key: string]: string;
|
|
};
|
|
constructor(speech: string, attributes: {
|
|
[key: string]: string;
|
|
});
|
|
}
|