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

    Interface IResourceWithConfig<TConfig, TValue, TDependencies, TContext, TMeta, TTags, TMiddleware>

    interface IResourceWithConfig<
        TConfig = any,
        TValue extends Promise<any> = Promise<any>,
        TDependencies extends DependencyMapType = any,
        TContext = any,
        TMeta extends IResourceMeta = any,
        TTags extends TagType[] = TagType[],
        TMiddleware extends
            IResourceMiddleware<any, any, any, any>[] = IResourceMiddleware[],
    > {
        "[symbolResourceWithConfig]": true;
        config: TConfig;
        id: string;
        resource: IResource<
            TConfig,
            TValue,
            TDependencies,
            TContext,
            TMeta,
            TTags,
            TMiddleware,
        >;
    }

    Type Parameters

    Index

    Properties

    "[symbolResourceWithConfig]": true
    config: TConfig

    The configuration captured by .with(config).

    id: string

    The id of the underlying resource.

    resource: IResource<
        TConfig,
        TValue,
        TDependencies,
        TContext,
        TMeta,
        TTags,
        TMiddleware,
    >

    The underlying resource definition.