vapor-chamber API reference - v1.3.0
    Preparing search index...

    Function getErrorEntry

    • Get the error registry entry for a BusError code.

      Parameters

      Returns ErrorCodeEntry | undefined

      if (result.error instanceof BusError) {
      const entry = getErrorEntry(result.error.code);
      console.log(entry?.fix); // actionable fix suggestion
      }