13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
export const FIELD_LIMITS = {
|
|
categoryName: 50,
|
|
description: 100,
|
|
email: 100,
|
|
fullName: 200,
|
|
name: 200,
|
|
notes: 100,
|
|
phoneNumber: 20,
|
|
reason: 500,
|
|
username: 20,
|
|
variantName: 200,
|
|
} as const;
|