@m3rashid/dsa-js
Version:
A data-structures and algorithms library for node and browser written in typescript. Inspired from C++ standard library
15 lines (14 loc) • 706 B
TypeScript
declare const _default: {
DoublyLinkedList: typeof import("./structures/doubly-linked-list").DoublyLinkedList;
DoublyLinkedListNode: typeof import("./structures/doubly-linked-list").DoublyLinkedListNode;
LinkedList: typeof import("./structures/linked-list").LinkedList;
LinkedListNode: typeof import("./structures/linked-list").LinkedListNode;
LinkedListTest: () => void;
Queue: typeof import("./structures/queue").Queue;
QueueNode: typeof import("./structures/queue").QueueNode;
queueTest: () => void;
Stack: typeof import("./structures/stack").Stack;
StackNode: typeof import("./structures/stack").StackNode;
stackTest: () => void;
};
export default _default;