Pacote
    Preparing search index...

    Interface Some<T>

    Option type wrapping a value of type T.

    interface Some<T> {
        constructor: any;
        type: typeof T_SOME;
        value: T;
    }

    Type Parameters

    • T

      Wrapped value type.

    Index

    Constructors

    Properties

    Constructors

    constructor: any

    Properties

    type: typeof T_SOME
    value: T