graph-builder
Version:
A graph builder library for modeling abstract graph structures.
12 lines (11 loc) • 471 B
TypeScript
import { AbstractBaseGraph } from "./AbstractBaseGraph";
import { Graph } from "./Graph";
/**
* This class provides a skeletal implementation of {@link Graph}. It is recommended to extend this
* class rather than implement {@link Graph} directly.
*/
export declare abstract class AbstractGraph<N> extends AbstractBaseGraph<N> implements Graph<N> {
equals(obj: Graph<N>): boolean;
/** Returns a string representation of this graph. */
toString(): string;
}