open-nfse / IdentificadorPessoa
Type Alias: IdentificadorPessoa
ts
type IdentificadorPessoa =
| {
CNPJ: string;
}
| {
CPF: string;
}
| {
NIF: string;
}
| {
cNaoNIF: CodigoNaoNif;
};Defined in: src/nfse/domain.ts:33