simgadget
    Preparing search index...

    Interface HandleOptions

    What a handle needs beyond its udid, name and dependencies. An options bag rather than more positional parameters: this is the second thing to be added here and there will be a third.

    interface HandleOptions {
        deviceType?: DeviceTypeInfo;
        onLog?: (message: string) => void;
    }
    Index
    deviceType?: DeviceTypeInfo

    The model this simulator was created as. createSimulator knows it for free; an attached handle never resolves one.

    onLog?: (message: string) => void

    Where the handle's own diagnostics go — today, the wedge recovery's. Omitted means silent, which is what a library should be by default.