UNPKG

capnp-ts

Version:

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

7 lines (6 loc) 212 B
/** * @author jdiaz5513 */ import { ListCtor } from "./list"; import { Struct, StructCtor } from "./struct"; export declare function CompositeList<T extends Struct>(CompositeClass: StructCtor<T>): ListCtor<T>;