0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-21 06:02:34 -05:00

feat: expose text props

This commit is contained in:
alonso.torres 2024-05-27 17:44:42 +02:00 committed by Alonso Torres
parent 1d76bfe985
commit 79c1231e56

View file

@ -339,6 +339,16 @@ export interface PenpotText extends PenpotShapeBase {
readonly type: 'text';
characters: string;
growType: 'fixed' | 'auto-width' | 'auto-height';
fontId: string | 'mixed';
fontFamily: string | 'mixed';
fontVariantId: string | 'mixed';
fontSize: string | 'mixed';
fontWeight: string | 'mixed';
fontStyle: string | 'mixed';
lineHeight: string | 'mixed';
letterSpacing: string | 'mixed';
textTransform: string | 'mixed';
}
export interface PepotFrame extends PenpotShapeBase {