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