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