mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 11:21:54 +02:00
7 lines
232 B
TypeScript
7 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;
|