Backstage
    Preparing search index...

    API which talks to TechDocs storage to fetch files to render.

    Import from @backstage/plugin-techdocs-react instead

    interface TechDocsStorageApi {
        getApiOrigin(): Promise<string>;
        getBaseUrl(
            oldBaseUrl: string,
            entityId: CompoundEntityRef,
            path: string,
        ): Promise<string>;
        getBuilder(): Promise<string>;
        getEntityDocs(entityId: CompoundEntityRef, path: string): Promise<string>;
        getStorageUrl(): Promise<string>;
        syncEntityDocs(
            entityId: CompoundEntityRef,
            logHandler?: (line: string) => void,
        ): Promise<SyncResult>;
    }
    Index

    Methods