This commit is contained in:
marcio 2025-11-18 08:33:29 -03:00
commit 6b8d30fb30
4 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import z from 'zod';
import dayjs from 'dayjs';
export { ManipulateType } from 'dayjs';
export { Dayjs, ManipulateType } from 'dayjs';
import { v4 } from 'uuid';
declare const aleatorio: (tamanho?: number) => string;

File diff suppressed because one or more lines are too long

Binary file not shown.

View file

@ -1,4 +1,4 @@
import dayjs from "dayjs"
import dayjs, { type Dayjs } from "dayjs"
export type { ManipulateType } from "dayjs"
@ -23,3 +23,5 @@ dayjs.extend(relativeTime)
dayjs.extend(duration)
export const dayjsbr = dayjs
export type { Dayjs }