@pwngh/economy-lab
    Preparing search index...

    Type Alias Boot

    What boot returns: the resolved ports, the economy assembled over them, and the worker bound to that same economy — null when the init declined it with worker: false.

    type Boot = {
        economy: Economy;
        ports: Ports;
        worker: Worker | null;
    }
    Index
    economy: Economy
    ports: Ports
    worker: Worker | null