UNPKG

capnp-ts

Version:

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

11 lines (10 loc) 267 B
/** * @author jdiaz5513 */ import { _ListCtor, List } from "./list"; export declare class Uint8List extends List<number> { static readonly _capnp: _ListCtor; get(index: number): number; set(index: number, value: number): void; toString(): string; }