trilium/apps/client/src/services/validation_error.ts
2025-04-22 22:12:56 +03:00

8 lines
192 B
TypeScript

export default class ValidationError {
constructor(resp: Record<string, string | number>) {
for (const key in resp) {
(this as any)[key] = resp[key];
}
}
}