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