Interface NullableResult<T>

    A nullable type.

    interface NullableResult<T> {
        element: T;
        meta: {
            position: "prefix" | "suffix";
        };
        type: "JsdocTypeNullable";
    }

    Type Parameters

    Properties

    Properties

    element: T
    meta: {
        position: "prefix" | "suffix";
    }
    type