UNPKG

265 BTypeScriptView Raw
1declare function curriedOpacifyWith1(color: string): string;
2declare function curriedOpacify(
3 amount: number | string,
4): typeof curriedOpacifyWith1;
5declare function curriedOpacify(amount: number | string, color: string): string;
6
7export default curriedOpacify;