@@ -22,8 +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 "./strings/rgbToHex" ;
26- import hexToRgb from "./strings/hexToRgb" ;
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" ;
2737declare const functionality : {
2838 sumOfArray : typeof sumOfArray ;
2939 capitalize : typeof capitalize ;
@@ -51,6 +61,16 @@ declare const functionality: {
5161 randomPassword : typeof randomPassword ;
5262 rgbToHex : typeof rgbToHex ;
5363 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 ;
5474} ;
5575declare global {
5676 interface Window {
0 commit comments