StopElement.d.ts 329 B

123456789
  1. import Document from './Document';
  2. import Element from './Element';
  3. export default class StopElement extends Element {
  4. type: string;
  5. readonly offset: number;
  6. readonly color: string;
  7. constructor(document: Document, node: HTMLElement, captureTextNodes?: boolean);
  8. }
  9. //# sourceMappingURL=StopElement.d.ts.map