UNPKG

@azuro-org/sdk

Version:

One-stop solution for building betting dApps on the Azuro Protocol.

9 lines (8 loc) 312 B
import { type DocumentNode } from 'graphql'; type Props<TVariables> = { url: string; document: DocumentNode; variables?: TVariables extends Record<string, never> ? never : TVariables; }; export declare const gqlRequest: <TResult, TVariables>(props: Props<TVariables>) => Promise<TResult>; export {};