@bluelibs/runner - v5.5.0
    Preparing search index...

    Interface TagFluentBuilder<TConfig, TEnforceIn, TEnforceOut>

    interface TagFluentBuilder<
        TConfig = void,
        TEnforceIn = void,
        TEnforceOut = void,
    > {
        id: string;
        build(): ITag<TConfig, TEnforceIn, TEnforceOut>;
        config<TNewConfig>(
            config: TNewConfig,
        ): TagFluentBuilder<TNewConfig, TEnforceIn, TEnforceOut>;
        configSchema<TNewConfig>(
            schema: IValidationSchema<TNewConfig>,
        ): TagFluentBuilder<TNewConfig, TEnforceIn, TEnforceOut>;
        meta<TNewMeta extends ITagMeta>(
            m: TNewMeta,
        ): TagFluentBuilder<TConfig, TEnforceIn, TEnforceOut>;
        schema<TNewConfig>(
            schema: IValidationSchema<TNewConfig>,
        ): TagFluentBuilder<TNewConfig, TEnforceIn, TEnforceOut>;
    }

    Type Parameters

    • TConfig = void
    • TEnforceIn = void
    • TEnforceOut = void
    Index

    Properties

    id: string

    Methods