typescript-dotnet-core
Version:
A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.
12 lines (11 loc) • 457 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md
*/
import ReadOnlyCollectionWrapper from "../ReadOnlyCollectionWrapper";
export default class ReadOnlyArrayWrapper<T> extends ReadOnlyCollectionWrapper<T> {
constructor(array: ArrayLike<T>);
protected _onDispose(): void;
private __getValueAt;
getValueAt(index: number): T;
}