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