Skip to content

Commit

Permalink
fix: fix result type to remove string[]
Browse files Browse the repository at this point in the history
  • Loading branch information
EriikGabriel committed Jul 6, 2023
1 parent 624171c commit 46e92b3
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 109 deletions.
2 changes: 1 addition & 1 deletion src/types/expression.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type TruthTableType = {
}

export type ResultType = {
truthTable: { [key: string]: number[] | string[] | null }
truthTable: { [key: string]: number[] | null }
propositionalForm: "Tautologia" | "Contradição" | "Contingência"
logicalImplication: {
implication: boolean
Expand Down
Loading

0 comments on commit 46e92b3

Please sign in to comment.