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; }