UNPKG

sketch-constructor

Version:

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

19 lines (13 loc) 292 B
import { Instance } from 'tinycolor2'; declare class Color { _class: 'color'; alpha: number; blue: number; green: number; red: number; swatchID?: string; constructor(args?: any, json?: any); set(tinyColor: Instance): Color; _getTinyColor(): Instance; } export = Color;