zeplin-extension-style-kit
Version:
Models and utilities to generate CSS-like style code in Zeplin extensions.
15 lines (10 loc) • 385 B
TypeScript
import { ColorParams, VariableMap, LengthParams } from "../common";
import Color from "../values/color";
import Length from "../values/length";
declare class TextStroke {
constructor(length: Length, color: Color);
name: string;
equals(other: TextStroke): boolean;
getValue(params: ColorParams & LengthParams, variables: VariableMap): string;
}
export = TextStroke;