polished
Version:
A lightweight toolset for writing styles in Javascript.
11 lines (9 loc) • 303 B
TypeScript
declare function curriedSetLightnessWith1(color: string): string;
declare function curriedSetLightness(
lightness: number | string,
): typeof curriedSetLightnessWith1;
declare function curriedSetLightness(
lightness: number | string,
color: string,
): string;
export default curriedSetLightness;