mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-28 07:49:01 +01:00
8 lines
83 B
TypeScript
8 lines
83 B
TypeScript
import Node from "./node";
|
|
|
|
interface Edge {
|
|
node: Node;
|
|
}
|
|
|
|
export default Edge;
|