UNPKG

307 BTypeScriptView Raw
1declare function curriedTransparentizeWith1(color: string): string;
2declare function curriedTransparentize(
3 amount: number | string,
4): typeof curriedTransparentizeWith1;
5declare function curriedTransparentize(
6 amount: number | string,
7 color: string,
8): string;
9
10export default curriedTransparentize;