Skip to content

Commit

Permalink
refactor: ajustando retorno do tipo
Browse files Browse the repository at this point in the history
  • Loading branch information
Aristidescosta committed Apr 6, 2024
1 parent ea7fae7 commit 9ab3a2a
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions fontes/interfaces/variavel-interface.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,9 @@
import { TIPO_NATIVO } from "../interpretador";
import { TIPO_NATIVO, TipoInferencia } from "../interpretador";

export interface VariavelInterface {
valor: any;
tipo:
| 'texto'
| 'número'
| 'longo'
| 'vetor'
| 'dicionário'
| 'nulo'
| 'lógico'
| 'função'
| 'símbolo'
| 'objeto'
| 'módulo'
| TIPO_NATIVO
subtipo?: 'texto' | 'número' | 'longo' | 'lóg ico';
tipo: TipoInferencia | TIPO_NATIVO
subtipo?: 'texto' | 'número' | 'longo' | 'lógico';
imutavel: boolean;
nomeReferencia?: string;
}

0 comments on commit 9ab3a2a

Please sign in to comment.