UNPKG

sketch-constructor

Version:

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

17 lines (11 loc) 295 B
import Style from '../Style'; declare class SharedStyle { _class: 'sharedStyle'; name: string; do_objectID: string; value: Style; static LayerStyle(args: any): SharedStyle; static TextStyle(args: any): SharedStyle; constructor(args?: any, json?: any); } export = SharedStyle;