mirror of https://github.com/mingrammer/diagrams
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
424 B
24 lines
424 B
export interface DotResult {
|
|
name: string;
|
|
source: string;
|
|
}
|
|
|
|
export interface RunResult {
|
|
dots: DotResult[];
|
|
stdout: string;
|
|
error: string | null;
|
|
}
|
|
|
|
export type ProgressStage = "pyodide" | "packages" | "ready";
|
|
|
|
export interface CatalogClass {
|
|
name: string;
|
|
aliases: string[];
|
|
icon: string;
|
|
}
|
|
|
|
export interface Catalog {
|
|
modules: Record<string, CatalogClass[]>;
|
|
signatures: Record<string, string[]>;
|
|
}
|