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:
parent
2869673f9c
commit
6f58a62dd5
2 changed files with 1 additions and 7 deletions
7
ui-src/lib/types/shape/shapeAttributes.d.ts
vendored
7
ui-src/lib/types/shape/shapeAttributes.d.ts
vendored
|
@ -4,7 +4,6 @@ import { Export } from '@ui/lib/types/utils/export';
|
|||
import { Fill } from '@ui/lib/types/utils/fill';
|
||||
import { Grid } from '@ui/lib/types/utils/grid';
|
||||
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 { Selrect } from '@ui/lib/types/utils/selrect';
|
||||
import { Shadow } from '@ui/lib/types/utils/shadow';
|
||||
|
@ -38,16 +37,10 @@ export type ShapeAttributes = {
|
|||
r2?: number;
|
||||
r3?: number;
|
||||
r4?: number;
|
||||
x?: number;
|
||||
y?: number;
|
||||
width?: number;
|
||||
height?: number;
|
||||
opacity?: number;
|
||||
grids?: Grid[];
|
||||
exports?: Export[];
|
||||
strokes?: Stroke[];
|
||||
transform?: Matrix;
|
||||
transformInverse?: Matrix;
|
||||
blendMode?: BlendMode;
|
||||
interactions?: Interaction[];
|
||||
shadow?: Shadow[];
|
||||
|
|
|
@ -43,4 +43,5 @@ export type ShapeBaseAttributes = {
|
|||
transformInverse?: Matrix;
|
||||
parentId?: Uuid;
|
||||
frameId?: Uuid;
|
||||
rotation?: number;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue