Skip to content

Commit

Permalink
feat: export Logger class alongside existing data structures
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Nov 6, 2024
1 parent 1ebba04 commit 80d7253
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,12 @@ import DoublyLinkedList from "./dataStructures/DoublyLinkedList";
import Queue from "./dataStructures/Queue";
import SingleLinkedList from "./dataStructures/SingleLinkedList";
import Stack from "./dataStructures/Stack";
import Logger from "./lib/Logger";

export { SingleLinkedList, Stack, Queue, DoublyLinkedList as LinkedList };
export {
SingleLinkedList,
Stack,
Queue,
DoublyLinkedList as LinkedList,
Logger,
};

0 comments on commit 80d7253

Please sign in to comment.