Interface NotNullableResult<T>

    A not nullable type.

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

    Type Parameters

    Properties

    Properties

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