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