UNPKG

capnp-ts

Version:

Strongly typed Cap'n Proto implementation for the browser and Node.js using TypeScript

11 lines (10 loc) 266 B
/** * @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; }