UNPKG

@proveanything/smartlinks

Version:

Official JavaScript/TypeScript SDK for the Smartlinks API

12 lines (11 loc) 260 B
// src/api/nfc.ts import { post } from "../http"; export const nfc = { /** * Claim an NFC tag (public). * POST /api/va/public/nfc/claimTag */ async claimTag(data) { return post("/public/nfc/claimTag", data); }, };