import { IBaseLinkedList } from "../base-linked-list.interface";
export interface ICircularDoublyLinkedList<T> extends IBaseLinkedList<T> {
}
