UNPKG

linked-list-lib

Version:

This package contain some possibilities of implementations of linked lists

4 lines (3 loc) 142 B
import { IBaseLinkedList } from "../base-linked-list.interface"; export interface ICircularSinglyLinkedList<T> extends IBaseLinkedList<T> { }