UNPKG

@inbridge/oif-ts

Version:

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

11 lines (8 loc) 189 B
import { CountryCode } from '../enums/country-code.enum.js'; type Address = { street: string; city: string; zip: string; country: CountryCode; }; export type { Address };