color-theme-generator
Version:
Generates random color themes that are based in color theory.
17 lines (16 loc) • 430 B
TypeScript
export declare class Style {
constructor(property: string, value: string);
/**
* The string that represents a CSS property.
*/
get property(): string;
/**
* The string that represents the value of the CSS property.
*/
get value(): string;
/**
* The string that represents the complete CSS declaration with property and value.
*/
get declaration(): string;
}