@letanure/resend-cli
Version:
A command-line interface for Resend email API
12 lines • 576 B
TypeScript
import type { CreateContactResponseSuccess } from 'resend';
import type { ApiResult } from '../../../types/index.js';
import type { CreateContactOptionsType } from './schema.js';
/**
* Creates a contact using the Resend API
*
* @param data - Contact data for creation
* @param apiKey - API key for Resend API
* @returns Promise<ApiResult<CreateContactResponseSuccess>> - Standard result format
*/
export declare function createContact(data: CreateContactOptionsType, apiKey: string): Promise<ApiResult<CreateContactResponseSuccess>>;
//# sourceMappingURL=action.d.ts.map