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