10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
export function formError<TErrorPayload>(
|
|
field: string,
|
|
opts?: Partial<Omit<TErrorPayload, "field" | "message">>,
|
|
) {
|
|
return {
|
|
field,
|
|
message: "Generic form error",
|
|
...opts,
|
|
};
|
|
}
|