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