UNPKG

161 BTypeScriptView Raw
1import { RgbColor } from '../types/color';
2
3declare function rgb(
4 value: RgbColor | number,
5 green?: number,
6 blue?: number,
7): string;
8
9export default rgb;