add mock passport data generator

This commit is contained in:
turnoffthiscomputer
2024-08-26 15:45:19 +02:00
parent 3bc08ae6cf
commit 8f2df219bd
8 changed files with 436 additions and 7 deletions

4
app/src/types/country-iso-3-to-2.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module 'country-iso-3-to-2' {
function getCountryISO2(iso3: string): string;
export = getCountryISO2;
}