fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-24 12:58:24 +02:00
parent c48c6a2d79
commit 62eeeecfef
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@tsclass/tsclass',
version: '4.0.25',
version: '4.0.26',
description: 'common classes for TypeScript'
}

View File

@ -7,6 +7,6 @@ export interface IPerson {
sex: 'male' | 'female' | 'queer';
legalProxyFor?: {
type: 'self' | 'other';
contact: IContact;
contact?: IContact;
}
}