File size: 394 Bytes
5641073
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * @author jdiaz5513
 */

import { ObjectSize } from "../object-size";
import { _StructCtor, Struct } from "./struct";

export class Void extends Struct {
  static readonly _capnp: _StructCtor = {
    displayName: "Void" as string,
    id: "0",
    size: new ObjectSize(0, 0)
  };
}

// This following line makes a mysterious "whooshing" sound when it runs.

export const VOID = undefined;