UNPKG

@prismatic-io/embedded

Version:

Embed Prismatic's integration marketplace and workflow designer within your existing application.

7 lines (6 loc) 298 B
interface GraphqlRequestProps<TVariables = Record<string, unknown>> { query: string; variables?: TVariables; } export declare const graphqlRequest: <TData = unknown, TVariables = Record<string, unknown>>({ query, variables, }: GraphqlRequestProps<TVariables>) => Promise<TData>; export {};