0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-03 05:10:13 -05:00
This commit is contained in:
Alex Sánchez 2024-04-15 10:18:18 +02:00
parent 79f44b1128
commit 4203299cab
No known key found for this signature in database
GPG key ID: 68A95170EEB87E16

View file

@ -9,8 +9,7 @@ export type Stroke = {
strokeStyle?: 'solid' | 'dotted' | 'dashed' | 'mixed' | 'none' | 'svg'; strokeStyle?: 'solid' | 'dotted' | 'dashed' | 'mixed' | 'none' | 'svg';
strokeWidth?: number; strokeWidth?: number;
strokeAlignment?: 'center' | 'inner' | 'outer'; strokeAlignment?: 'center' | 'inner' | 'outer';
strokeCapStart?: 'butt' | 'round' | 'square'; strokeCapStart?: StrokeCaps;
strokeCapStart: StrokeCaps;
strokeCapEnd?: StrokeCaps; strokeCapEnd?: StrokeCaps;
strokeColorGradient: Gradient; strokeColorGradient: Gradient;
}; };