UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

12 lines 417 B
import { type ReactNode } from 'react'; interface DryRunContextType { isDryRun: boolean; } interface DryRunProviderProps { children: ReactNode; isDryRun?: boolean; } export declare const DryRunProvider: ({ children, isDryRun }: DryRunProviderProps) => import("react/jsx-runtime").JSX.Element; export declare const useDryRun: () => DryRunContextType; export {}; //# sourceMappingURL=DryRunProvider.d.ts.map