export interface SparqlView { renderSparql: ( domElement: HTMLElement, uri: string, endpoint: string ) => void; priorityForSparql: (uri: string, endpoint: string) => Promise; } export type View = SparqlView; export interface ViewDescription { name: string; description: string; entrypoint: string; }