0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-03 05:10:13 -05:00

minimal attributes

This commit is contained in:
Alex Sánchez 2024-04-15 17:33:16 +02:00
parent 2869673f9c
commit 6f58a62dd5
No known key found for this signature in database
GPG key ID: 68A95170EEB87E16
2 changed files with 1 additions and 7 deletions

View file

@ -4,7 +4,6 @@ import { Export } from '@ui/lib/types/utils/export';
import { Fill } from '@ui/lib/types/utils/fill'; import { Fill } from '@ui/lib/types/utils/fill';
import { Grid } from '@ui/lib/types/utils/grid'; import { Grid } from '@ui/lib/types/utils/grid';
import { Interaction } from '@ui/lib/types/utils/interaction'; import { Interaction } from '@ui/lib/types/utils/interaction';
import { Matrix } from '@ui/lib/types/utils/matrix';
import { Point } from '@ui/lib/types/utils/point'; import { Point } from '@ui/lib/types/utils/point';
import { Selrect } from '@ui/lib/types/utils/selrect'; import { Selrect } from '@ui/lib/types/utils/selrect';
import { Shadow } from '@ui/lib/types/utils/shadow'; import { Shadow } from '@ui/lib/types/utils/shadow';
@ -38,16 +37,10 @@ export type ShapeAttributes = {
r2?: number; r2?: number;
r3?: number; r3?: number;
r4?: number; r4?: number;
x?: number;
y?: number;
width?: number;
height?: number;
opacity?: number; opacity?: number;
grids?: Grid[]; grids?: Grid[];
exports?: Export[]; exports?: Export[];
strokes?: Stroke[]; strokes?: Stroke[];
transform?: Matrix;
transformInverse?: Matrix;
blendMode?: BlendMode; blendMode?: BlendMode;
interactions?: Interaction[]; interactions?: Interaction[];
shadow?: Shadow[]; shadow?: Shadow[];

View file

@ -43,4 +43,5 @@ export type ShapeBaseAttributes = {
transformInverse?: Matrix; transformInverse?: Matrix;
parentId?: Uuid; parentId?: Uuid;
frameId?: Uuid; frameId?: Uuid;
rotation?: number;
}; };