@@ -22,6 +22,18 @@ import randomColor from "./randoms/randomColor";
2222import randomHsl from "./randoms/randomHsl" ;
2323import isHappyNumber from "./numbers/isHappyNumber" ;
2424import randomPassword from "./randoms/randomPassword" ;
25+ import rgbToHex from "./converts/rgbToHex" ;
26+ import hexToRgb from "./converts/hexToRgb" ;
27+ import rgbToHsl from "./converts/rgbToHsl" ;
28+ import removeInnerSpace from "./strings/removeInnerSpace" ;
29+ import getBrowser from "./user/getBrowser" ;
30+ import getMonths from "./user/getMonths" ;
31+ import getWeeks from "./user/getWeeks" ;
32+ import getDays from "./user/getDays" ;
33+ import getHours from "./user/getHours" ;
34+ import getMinutes from "./user/getMinutes" ;
35+ import getSeconds from "./user/getSeconds" ;
36+ import select from "./dom/select" ;
2537declare const functionality : {
2638 sumOfArray : typeof sumOfArray ;
2739 capitalize : typeof capitalize ;
@@ -47,6 +59,18 @@ declare const functionality: {
4759 randomHsl : typeof randomHsl ;
4860 isHappyNumber : typeof isHappyNumber ;
4961 randomPassword : typeof randomPassword ;
62+ rgbToHex : typeof rgbToHex ;
63+ hexToRgb : typeof hexToRgb ;
64+ rgbToHsl : typeof rgbToHsl ;
65+ removeInnerSpace : typeof removeInnerSpace ;
66+ getBrowser : typeof getBrowser ;
67+ getMonths : typeof getMonths ;
68+ getWeeks : typeof getWeeks ;
69+ getDays : typeof getDays ;
70+ getHours : typeof getHours ;
71+ getSeconds : typeof getSeconds ;
72+ getMinutes : typeof getMinutes ;
73+ select : typeof select ;
5074} ;
5175declare global {
5276 interface Window {
0 commit comments