UNPKG

290 BTypeScriptView Raw
1import { RenderingContext2D } from '../types';
2import { Point } from '../Point';
3export interface ITransform {
4 type: string;
5 apply(ctx: RenderingContext2D): void;
6 unapply(ctx: RenderingContext2D): void;
7 applyToPoint(point: Point): void;
8}
9//# sourceMappingURL=types.d.ts.map
\No newline at end of file