mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-02 00:14:52 +02:00
8 lines
83 B
TypeScript
8 lines
83 B
TypeScript
import Node from "./node";
|
|
|
|
interface Edge {
|
|
node: Node;
|
|
}
|
|
|
|
export default Edge;
|