main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
712 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | import Document from './Document';
|
---|
| 2 | import Element from './Element';
|
---|
| 3 | import FontFaceElement from './FontFaceElement';
|
---|
| 4 | import MissingGlyphElement from './MissingGlyphElement';
|
---|
| 5 | import GlyphElement from './GlyphElement';
|
---|
| 6 | export default class FontElement extends Element {
|
---|
| 7 | type: string;
|
---|
| 8 | readonly isArabic: boolean;
|
---|
| 9 | readonly missingGlyph: MissingGlyphElement;
|
---|
| 10 | readonly glyphs: Record<string, GlyphElement | Record<string, GlyphElement>>;
|
---|
| 11 | readonly horizAdvX: number;
|
---|
| 12 | readonly isRTL: boolean;
|
---|
| 13 | readonly fontFace: FontFaceElement;
|
---|
| 14 | constructor(document: Document, node: HTMLElement, captureTextNodes?: boolean);
|
---|
| 15 | render(): void;
|
---|
| 16 | }
|
---|
| 17 | //# sourceMappingURL=FontElement.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.