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