Saltar al contenido principal

Documentation Index

Fetch the complete documentation index at: https://acme-c84a37e5.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Ejemplo

import { run } from "tryo";

const r = await run(() => fetch("/api/items").then((x) => x.json()), {
  retries: 3,
  retryDelay: (attempt) => attempt * 200,
  timeout: 2000,
});

if (r.ok) {
  console.log(r.data);
} else {
  console.error(r.error.code);
}