summaryrefslogtreecommitdiff
path: root/node_modules/capnp-ts/src/serialization/pointers/void-list.ts
blob: 07b4b6ef50af2ca83811851524bacf059fb939cb (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * Why would anyone **SANE** ever use this!?
 *
 * @author jdiaz5513
 */

import { ListCtor } from "./list";
import { PointerList } from "./pointer-list";
import { Void } from "./void";

export const VoidList: ListCtor<Void> = PointerList(Void);