papi-dts
    Preparing search index...

    Interface ProjectDataProviderEngineEnvelope<SupportedProjectInterfaces>

    Envelope that IProjectDataProviderEngineFactory.createProjectDataProviderEngine may return instead of the engine directly, carrying per-PDP network object metadata alongside the engine.

    WARNING: projectDataProviderEngine is a reserved discriminating property — do not expose a property by that name on a raw engine, or the platform will treat the engine as an envelope.

    interface ProjectDataProviderEngineEnvelope<
        SupportedProjectInterfaces extends ProjectInterfaces[],
    > {
        attributes?: { [property: string]: unknown };
        documentation?: NetworkObjectDocumentation;
        projectDataProviderEngine: IProjectDataProviderEngine<
            SupportedProjectInterfaces,
        >;
    }

    Type Parameters

    Index

    Properties

    attributes?: { [property: string]: unknown }
    projectDataProviderEngine: IProjectDataProviderEngine<
        SupportedProjectInterfaces,
    >