UNPKG

zeplin-extension-style-kit

Version:

Models and utilities to generate CSS-like style code in Zeplin extensions.

13 lines (8 loc) 200 B
declare class FontWeight { constructor(value: number); name: string; hasDefaultValue(): boolean; equals(other: FontWeight): boolean; getValue(): string; } export = FontWeight;