You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
402 B
12 lines
402 B
9 months ago
|
import { RenderingContext2D } from '../types';
|
||
|
import Document from '../Document';
|
||
|
import Point from '../Point';
|
||
|
export default class Translate {
|
||
|
type: string;
|
||
|
private readonly point;
|
||
|
constructor(_: Document, point: string);
|
||
|
apply(ctx: RenderingContext2D): void;
|
||
|
unapply(ctx: RenderingContext2D): void;
|
||
|
applyToPoint(point: Point): void;
|
||
|
}
|
||
|
//# sourceMappingURL=Translate.d.ts.map
|