estructura_automation
Version:
Paquete de estructura de automation
23 lines (21 loc) • 321 B
text/typescript
export const naturalPerson = [
{
symbol: 'V',
label: 'Venezolano'
},
{
symbol: 'E',
label: 'Extranjero'
},
];
export const company = [
{
symbol: 'J',
label: 'Jurídico'
},
{
symbol: 'G',
label: 'Gobierno'
}
];
export const allDocumentTypes = [...naturalPerson, ...company];