Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
interface HasLengthOptions {
max?: number;
min?: number;
}
type HasLengthPayload = HasLengthOptions | number;
export declare function hasLength(payload: HasLengthPayload, error?: React.ReactNode): (value: unknown) => React.ReactNode;
export {};

8
node_modules/@mantine/form/lib/validators/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
export { isNotEmpty } from './is-not-empty/is-not-empty';
export { matches } from './matches/matches';
export { isEmail } from './is-email/is-email';
export { hasLength } from './has-length/has-length';
export { isInRange } from './is-in-range/is-in-range';
export { matchesField } from './matches-field/matches-field';
export { isNotEmptyHTML } from './is-not-empty-html/is-not-empty-html';
export { isJSONString } from './is-json-string/is-json-string';

View File

@@ -0,0 +1 @@
export declare function isEmail(error?: React.ReactNode): (value: unknown) => React.ReactNode;

View File

@@ -0,0 +1,6 @@
interface IsInRangePayload {
min?: number;
max?: number;
}
export declare function isInRange({ min, max }: IsInRangePayload, error?: React.ReactNode): (value: unknown) => React.ReactNode;
export {};

View File

@@ -0,0 +1 @@
export declare function isJSONString(error?: React.ReactNode): (value: unknown) => React.ReactNode;

View File

@@ -0,0 +1 @@
export declare function isNotEmptyHTML(error?: React.ReactNode): (value: unknown) => React.ReactNode;

View File

@@ -0,0 +1 @@
export declare function isNotEmpty(error?: React.ReactNode): (value: unknown) => React.ReactNode;

View File

@@ -0,0 +1 @@
export declare function matchesField<T>(field: keyof T, error?: React.ReactNode): (value: unknown, values: T) => React.ReactNode;

View File

@@ -0,0 +1 @@
export declare function matches(regexp: RegExp, error?: React.ReactNode): (value: unknown) => React.ReactNode;