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