UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

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