You cannot 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
413 B
TypeScript
12 lines
413 B
TypeScript
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
|