You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
346 B
TypeScript

import Document from './Document';
import TextElement from './TextElement';
export default class TSpanElement extends TextElement {
type: string;
protected readonly text: string;
constructor(document: Document, node: HTMLElement, captureTextNodes?: boolean);
getText(): string;
}
//# sourceMappingURL=TSpanElement.d.ts.map