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