sketch-constructor
Version:
Read/write/manipulate Sketch files in Node without Sketch plugins!
16 lines (12 loc) • 378 B
TypeScript
import Layer from '../Layer';
import AttributedString from '../AttributedString';
declare class Text extends Layer {
automaticallyDrawOnUnderlyingPath: boolean;
dontSynchroniseWithSymbol: boolean;
attributedString: AttributedString;
glyphBounds: string;
lineSpacingBehaviour: number;
textBehaviour: number;
constructor(args?: any, json?: any);
}
export = Text;