UNPKG

@tsclass/tsclass

Version:

Provides TypeScript definitions for various business, financial, networking, content, and other common classes.

12 lines (11 loc) 260 B
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; }; }