zeplin-extension-style-kit
Version:
Models and utilities to generate CSS-like style code in Zeplin extensions.
15 lines (9 loc) • 323 B
TypeScript
import { VariableMap, LengthParams } from "../common";
declare class LineHeight {
constructor(lineHeight: number, fontSize: number);
name: string;
hasDefaultValue(): boolean;
equals(other: LineHeight): boolean;
getValue(params: LengthParams, variables: VariableMap): string;
}
export = LineHeight;