Spaces:
Configuration error
Configuration error
/** | |
* @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; | |