Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 318 Bytes

USAGE.md

File metadata and controls

17 lines (12 loc) · 318 Bytes
import { Vercel } from "@simplesagar/vercel";

const vercel = new Vercel();

async function run() {
  const result = await vercel.listDeploymentBuilds("<value>");

  // Handle the result
  console.log(result);
}

run();