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 (12 loc) 310 B
type SignatureInformation = { /** * @description Date of the signature. */ date: Date; /** * @description Can be an url to a provided signature document or a base64 encoded signature. * @format url|base64 */ signature: string; }; export type { SignatureInformation };