Member Junction
    Preparing search index...

    Interface for artifact viewer plugins. All artifact viewer plugins must implement this interface and be registered with

    decorator from @memberjunction/global.

    interface IArtifactViewerPlugin {
        componentType: Type<IArtifactViewerComponent>;
        getMetadata?(artifactVersion: MJArtifactVersionEntity): ArtifactMetadata;
    }
    Index

    Properties

    Methods

    Properties

    componentType: Type<IArtifactViewerComponent>

    The Angular component class that will be dynamically loaded to render the FULL artifact (the right-side viewer panel — toolbar, tabs, feedback, etc.). Must be a component type that accepts artifact input. REQUIRED.

    Methods