UNPKG

pisces-data-structure

Version:

13 lines (10 loc) 191 B
/** * 线性结构接口 */ interface IList<T> { isEmpty(): boolean; // 线性结构是否为空 get size(): number; // 线性结构的大小 } export { IList, };