summaryrefslogtreecommitdiff
path: root/node_modules/capnp-ts/src/serialization/pointers/uint16-list.d.ts
blob: 02df3da156ded175af0c1d90b715ab8e7f2220c3 (plain)
1
2
3
4
5
6
7
8
9
10
/**
 * @author jdiaz5513
 */
import { _ListCtor, List } from "./list";
export declare class Uint16List extends List<number> {
    static readonly _capnp: _ListCtor;
    get(index: number): number;
    set(index: number, value: number): void;
    toString(): string;
}