GlyphElement.d.ts 382 B

12345678910
  1. import Document from './Document';
  2. import PathElement from './PathElement';
  3. export default class GlyphElement extends PathElement {
  4. type: string;
  5. readonly horizAdvX: number;
  6. readonly unicode: string;
  7. readonly arabicForm: string;
  8. constructor(document: Document, node: HTMLElement, captureTextNodes?: boolean);
  9. }
  10. //# sourceMappingURL=GlyphElement.d.ts.map