UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

12 lines 579 B
import type { RemoveContactsResponseSuccess } from 'resend'; import type { ApiResult } from '../../../types/index.js'; import type { DeleteContactOptionsType } from './schema.js'; /** * Deletes a contact using the Resend API * * @param data - Contact data for deletion * @param apiKey - API key for Resend API * @returns Promise<ApiResult<RemoveContactsResponseSuccess>> - Standard result format */ export declare function deleteContact(data: DeleteContactOptionsType, apiKey: string): Promise<ApiResult<RemoveContactsResponseSuccess>>; //# sourceMappingURL=action.d.ts.map