proposit-core
    Preparing search index...

    Type Alias TPropositCoreOptions<TArg, TPremise, TExpr, TVar, TClaim, TCitation, TAxiom, TArgFork, TPremiseFork, TExprFork, TVarFork, TClaimFork>

    TPropositCoreOptions: TPropositCoreConfig & {
        argumentLibrary?: ArgumentLibrary<TArg, TPremise, TExpr, TVar, TClaim>;
        claimAxiomLibrary?: ClaimAxiomLibrary<TAxiom>;
        claimCitationLibrary?: ClaimCitationLibrary<TCitation>;
        claimLibrary?: ClaimLibrary<TClaim>;
        forkLibrary?: ForkLibrary<
            TArgFork,
            TPremiseFork,
            TExprFork,
            TVarFork,
            TClaimFork,
        >;
    }

    Options for constructing a PropositCore instance. Accepts optional pre-constructed library instances and/or shared configuration. When a library instance is provided, it is used directly; otherwise a new one is constructed using the shared config.

    Type Parameters

    Type Declaration