Files
med-notes/.pnpm-store/v10/files/45/1da40d490ad5d7481df42a65b64ef187e8f2780fc618632f6a491a6d68920999bc1c7cd6da4c71bf492726893ce88b8ea0e4677453ba1e910cc5d64abb863f
2025-05-09 05:30:08 +02:00

17 lines
738 B
Plaintext

export class ColorConverters {
static CMYK_G([c, y, m, k]: [any, any, any, any]): (string | number)[];
static G_CMYK([g]: [any]): (string | number)[];
static G_RGB([g]: [any]): any[];
static G_rgb([g]: [any]): any[];
static G_HTML([g]: [any]): string;
static RGB_G([r, g, b]: [any, any, any]): (string | number)[];
static RGB_rgb(color: any): any;
static RGB_HTML(color: any): string;
static T_HTML(): string;
static T_rgb(): null[];
static CMYK_RGB([c, y, m, k]: [any, any, any, any]): (string | number)[];
static CMYK_rgb([c, y, m, k]: [any, any, any, any]): number[];
static CMYK_HTML(components: any): string;
static RGB_CMYK([r, g, b]: [any, any, any]): (string | number)[];
}