UNPKG

zeplin-extension-style-kit

Version:

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

16 lines (10 loc) 348 B
import { VariableMap, LengthParams } from "../common"; import Length from "../values/length"; declare class LetterSpacing { constructor(value: Length); name: string; hasDefaultValue(): boolean; equals(other: LetterSpacing): boolean; getValue(params: LengthParams, variables: VariableMap): string; } export = LetterSpacing;