UNPKG

sketch-constructor

Version:

Read/write/manipulate Sketch files in Node without Sketch plugins!

14 lines (11 loc) 277 B
import Layer from '../Layer'; import CurvePoint from '../CurvePoint'; declare class Oval extends Layer { _class: 'oval'; edited: boolean; isClosed: boolean; pointRadiusBehaviour: number; points: CurvePoint[]; constructor(args?: any, json?: any); } export = Oval;