Retrieves an auction listing based on the provided options.
import { getListing } from "thirdweb/extensions/marketplace"; const listing = await getListing({ contract, listingId: 1n });let returnType: {  assetContractAddress: Address;  bidBufferBps: bigint;  buyoutBidAmount: bigint;  creatorAddress: Address;  currencyContractAddress: Address;  endTimeInSeconds: bigint;  id: bigint;  minimumBidAmount: bigint;  quantity: bigint;  startTimeInSeconds: bigint;  status: ListingStatus;  timeBufferInSeconds: bigint;  tokenId: bigint;  type: "english-auction";};A promise that resolves to the direct listing.