@thangk/easythemer
Version:
Easily generate shades from a colour palette for use in your app
10 lines (9 loc) • 317 B
TypeScript
import { ChannelParams } from "../types";
interface QuickParamsType {
shadeFactor: number;
HSL_channel: number;
HSL_letter: string;
workingObj: ChannelParams;
}
export default function getChannelValue({ shadeFactor, HSL_channel, HSL_letter, workingObj }: QuickParamsType): number;
export {};