export interface IKeyCollection<T> { add(key: string, value: T); containsKey(key: string): boolean; size(): number; getItem(key: string): T; ...
確定! 回上一頁