UNPKG

zugferd-code-lists

Version:

ZUGFeRD code lists, e.g. languages enum, currencies enum, countries enum, etc.

38 lines (36 loc) 896 B
declare enum MIME { /** * application/pdf */ ApplicationPdf = "application/pdf", /** * image/png */ ImagePng = "image/png", /** * image/jpeg */ ImageJpeg = "image/jpeg", /** * text/csv */ TextCsv = "text/csv", /** * application/vnd.openxmlformats-officedocument.spreadsheetml.sheet */ ApplicationVndOpenxmlformatsOfficedocumentSpreadsheetmlSheet = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", /** * application/vnd.oasis.opendocument.spreadsheet */ ApplicationVndOasisOpendocumentSpreadsheet = "application/vnd.oasis.opendocument.spreadsheet", /** * application/xml */ ApplicationXml = "application/xml", /** * text/xml */ TextXml = "text/xml" } declare function description(value: MIME): string; export { MIME, description };