UNPKG

@inbridge/oif-ts

Version:

TypeScript integration for the Open Invoice Format (OIF) schema. Easily create OIF-compliant PDFs and parse/validate JSON.

14 lines (11 loc) 304 B
import { Address } from './address.type.js'; import '../enums/country-code.enum.js'; type PrivatePersonInformation = { contact: { firstname: string; lastname: string; phoneNumber?: string; email: string; }; } & Address; export type { PrivatePersonInformation };