Files
blowfish/node_modules/khroma/dist/methods/rgba.d.ts
Nuno Coração 5fb4bd8083 config redirect
2023-01-29 22:30:24 +00:00

8 lines
232 B
TypeScript

import type { Channels } from '../types';
declare type IRgba = {
(color: string | Channels, opacity: number): string;
(r: number, g: number, b: number, a?: number): string;
};
declare const rgba: IRgba;
export default rgba;