mona-dish
    Preparing search index...

    Interface IValueHolder<T>

    custom value holder definition, since we are not pure functional but iterative we have structures which allow the assignment of a value also not all structures are side - effect free

    interface IValueHolder<T> {
        value: T | T[];
    }

    Type Parameters

    • T

    Implemented by

    Index

    Properties

    Properties

    value: T | T[]