allow more args for graphable

This commit is contained in:
Timo Hocker 2020-05-05 14:39:25 +02:00
parent 4f9741f785
commit 81aa911d8a

View File

@ -1,5 +1,5 @@
import { Graph } from './Graph'; import { Graph } from './Graph';
export interface Graphable { export interface Graphable {
to_graph(g: Graph): void; to_graph(g: Graph, ...args: unknown[]): void;
} }