Files
DentalManagementMHAprilgg/packages/db/shared/helpers/decimal-helpers.d.ts
2026-04-04 22:13:55 -04:00

6 lines
393 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../generated/prisma';
export declare const DecimalJSLikeSchema: z.ZodType<Prisma.DecimalJsLike>;
export declare const DECIMAL_STRING_REGEX: RegExp;
export declare const isValidDecimalInput: (v?: null | string | number | Prisma.DecimalJsLike) => v is string | number | Prisma.DecimalJsLike;
//# sourceMappingURL=decimal-helpers.d.ts.map