UNPKG

capnp-ts

Version:

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

10 lines (7 loc) 227 B
/** * @author jdiaz5513 */ import { Interface } from "./interface"; import { ListCtor } from "./list"; import { PointerList } from "./pointer-list"; export const InterfaceList: ListCtor<Interface> = PointerList(Interface);