10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
import type { provedoresGov } from "../produtos";
|
|
export type tipoUsuarioTokenAutneticacao = {
|
|
usuario_codigo: string;
|
|
usuario_nome: string;
|
|
usuario_email: string;
|
|
usuario_cpf: string;
|
|
autenticacao_codigo: string;
|
|
eSuporte: boolean;
|
|
autenticacao_provedor: keyof typeof provedoresGov;
|
|
};
|