7 lines
239 B
TypeScript
7 lines
239 B
TypeScript
|
export { default as dayjs } from 'dayjs';
|
||
|
export { useDark, cloneDeep, randomGradient } from '@pureadmin/utils';
|
||
|
|
||
|
export function getRandomIntBetween(min: number, max: number) {
|
||
|
return Math.floor(Math.random() * (max - min + 1)) + min;
|
||
|
}
|