UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

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