sketch-constructor
Version:
Read/write/manipulate Sketch files in Node without Sketch plugins!
15 lines (11 loc) • 303 B
TypeScript
import Layer = require('../Layer');
import CurvePoint = require('../CurvePoint');
declare class ShapePath extends Layer {
_class: 'shapePath';
edited: boolean;
isClosed: boolean;
pointRadiusBehaviour: number;
points: CurvePoint[];
constructor(args: any, json: any);
}
export = ShapePath;