@rcsb/rcsb-saguaro-app
Version:
RCSB 1D Saguaro Web App
11 lines (10 loc) • 362 B
TypeScript
import React from "react";
export type UiComponentType<T extends {}> = {
component: typeof React.Component<T, any>;
props: T;
};
export declare class GroupPfvUI {
static fvUI(element: string | HTMLElement, uiComponent: UiComponentType<any>[]): void;
static addBootstrapElement(elementId: string): HTMLElement;
private static htmlElementUI;
}