import { BaseObject } from "./base-object"; /** * 链表接口 */ export interface ILinkedList { next: BaseObject; prev: BaseObject; }