trilium/src/public/app/services/validation_error.ts
2025-01-09 18:07:02 +02: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];
}
}
}