fix: ajsute
This commit is contained in:
parent
b430100bab
commit
6db0272010
3 changed files with 14 additions and 10 deletions
|
|
@ -89,12 +89,14 @@ declare const objetoCredencial: {
|
|||
[k in keyof typeof orgaos]: z.ZodObject;
|
||||
};
|
||||
type TipoCredenciais = {
|
||||
SINIR: z.infer<typeof zCredenciaisSinir>;
|
||||
IEMA: z.infer<typeof zCredenciaisIema>;
|
||||
teste: z.infer<typeof teste>;
|
||||
SINIR?: z.infer<typeof zCredenciaisSinir>;
|
||||
IEMA?: z.infer<typeof zCredenciaisIema>;
|
||||
teste?: z.infer<typeof teste>;
|
||||
};
|
||||
type TipoCredenciaisLista = {
|
||||
[K in keyof TipoCredenciais]: TipoCredenciais[K];
|
||||
[K in keyof TipoCredenciais]: {
|
||||
K: TipoCredenciais[K];
|
||||
};
|
||||
}[keyof TipoCredenciais];
|
||||
type tipo_zUsuarioSincronizar = z.infer<typeof zUsuarioSincronizar>;
|
||||
/** Tipagem usada para o processo de sincronização entre modulos */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue