main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
413 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | import { RenderingContext2D } from '../types';
|
---|
| 2 | import Document from '../Document';
|
---|
| 3 | import Point from '../Point';
|
---|
| 4 | export default class Translate {
|
---|
| 5 | type: string;
|
---|
| 6 | private readonly point;
|
---|
| 7 | constructor(_: Document, point: string);
|
---|
| 8 | apply(ctx: RenderingContext2D): void;
|
---|
| 9 | unapply(ctx: RenderingContext2D): void;
|
---|
| 10 | applyToPoint(point: Point): void;
|
---|
| 11 | }
|
---|
| 12 | //# sourceMappingURL=Translate.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.