@theophilusdev/conduit
    Preparing search index...

    Class ConduitBaseBuilder<T>Abstract

    Base class for fluent builder patterns in Conduit.

    Provides a shared structure for accumulating state and producing a final constructed value via .build().

    All Conduit builders (e.g. MessageBuilder, AttachmentBuilder) extend this class to inherit a consistent fluent API pattern.

    Type Parameters

    • T

      The type of the final built output

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    _data: T

    Methods

    • Creates a new builder instance using the concrete subclass.

      Type Parameters

      Parameters

      • this: new () => B

      Returns B

      A new instance of the builder

      This enables fluent factory usage like: MessageBuilder.create().body("hello")