UNPKG

215 BTypeScriptView Raw
1import { RgbaColor } from '../types/color';
2
3declare function rgba(
4 firstValue: RgbaColor | number | string,
5 secondValue?: number,
6 thirdValue?: number,
7 fourthValue?: number,
8): string;
9
10export default rgba;