UNPKG

@riverfl0w/dune-client

Version:

A TypeScript client for querying the Dune API, designed to simplify the integration of Dune's powerful analytics into your projects.

9 lines (6 loc) 210 B
import { z } from 'zod'; const CancelExecutionResponse = z.object({ success: z.boolean(), }); type CancelExecutionResponse = z.infer<typeof CancelExecutionResponse>; export default CancelExecutionResponse;