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:
528 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | import { RenderingContext2D } from '../types';
|
---|
| 2 | import Document from './Document';
|
---|
| 3 | import TextElement from './TextElement';
|
---|
| 4 | export default class AElement extends TextElement {
|
---|
| 5 | type: string;
|
---|
| 6 | protected readonly hasText: boolean;
|
---|
| 7 | protected readonly text: string;
|
---|
| 8 | constructor(document: Document, node: HTMLElement, captureTextNodes?: boolean);
|
---|
| 9 | getText(): string;
|
---|
| 10 | renderChildren(ctx: RenderingContext2D): void;
|
---|
| 11 | onClick(): void;
|
---|
| 12 | onMouseMove(): void;
|
---|
| 13 | }
|
---|
| 14 | //# sourceMappingURL=AElement.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.