UNPKG

@aurigma/design-atoms-model

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

10 lines (9 loc) 250 B
import { Matrix } from "./Matrix"; export declare class SizeF { width: number; height: number; constructor(width?: number, height?: number); clone(): SizeF; toString(): string; updateByMatrix(matrix: Matrix): this; }