Unpins a file from IPFS.
import { unpin } from "thirdweb"; const result = await unpin({ client: thirdwebClient, cid: "QmTzQ1N1z1Q1N1z1Q1N1z1Q1N1z1Q1N1z1Q1N1z1Q1N1z1",});
function unpin(options: UnpinOptions): Promise<void>;
The options for unpinning the file.
let options: { cid: string; client: ThirdwebClient };
let returnType: Promise<void>;