trilium/src/public/app/services/validation_error.ts
2024-07-24 23:30:10 +03:00

7 lines
191 B
TypeScript

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