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