13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
import { type IContact } from './contact.js';
|
|
|
|
export interface IPerson {
|
|
title: string;
|
|
name: string;
|
|
surname: string;
|
|
sex: 'male' | 'female' | 'queer';
|
|
legalProxyFor?: {
|
|
type: 'self' | 'other';
|
|
contact?: IContact;
|
|
};
|
|
}
|