UNPKG
fregejs
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.3
0.2.1
0.2.0
0.1.0
A propositional logic library written in Typescript
github.com/etec-sa
etec-sa/frege
fregejs
/
src
/
types
/
formulas
/
molecular-formula.ts
16 lines
(13 loc)
•
284 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Conjunction
,
Disjunction
,
Implication
,
Biconditional
, }
from
'../operations/binary-operations'
;
import
{
Negation
}
from
'../operations/unary-operation'
;
export
type
MolecularFormula
= |
Negation
|
Conjunction
|
Disjunction
|
Implication
|
Biconditional
;