UNPKG

friday-sdk

Version:

Official JavaScript/TypeScript SDK for the Friday API

14 lines (13 loc) 323 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.crawl = void 0; const crawl = (client, url, options) => { return client.request("/crawl", { method: "POST", body: JSON.stringify({ url, ...options, }), }); }; exports.crawl = crawl;