UNPKG

spotify-api.js

Version:

A complete node js wrapper of spotify api with oauth support

8 lines (7 loc) 230 B
/** * Converts a hex string into rgba array. * * @param hexString The hex string. * @example hexToRgb('ffffff') == [0, 0, 0, 1] */ export declare function hexToRgb(hexString: string): [number, number, number, number];