UNPKG

zeplin-extension-style-kit

Version:

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

12 lines (7 loc) 244 B
import { LengthParams, LengthOptions } from "../common"; declare class Length { constructor(value: number, options?: LengthOptions); equals(other: Length): boolean; toStyleValue(params: LengthParams): string; } export = Length;