module.exports = { ArrayList: { type: "class", }, SinglyLinkedList: { type: "class", }, DoublyLinkedList: { type: "class", }, Queue: { type: "class", }, Stack: { type: "class", }, InsertionSort: { type: "fn", fn: "insertion_sort", args: "arr: number[]", "return": "void", }, MergeSort: { type: "fn", fn: "merge_sort", args: "arr: number[]", "return": "void", }, };