UNPKG

@selenite/graph-editor

Version:

A graph editor for visual programming, based on rete and svelte.

7 lines (6 loc) 193 B
import type { Datasource, Graph } from './types'; export declare class GitHubDataSource implements Datasource { url: URL; constructor(url: string); getGraphs(): Promise<Graph[]>; }