Interface OptionalResult<T>

    element is optional.

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

    Type Parameters

    Properties

    Properties

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