UNPKG

@prismatic-io/embedded

Version:

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

6 lines (5 loc) 200 B
export interface GraphqlRequestProps { query: string; variables?: Record<string, unknown>; } export declare const graphqlRequest: ({ query, variables, }: GraphqlRequestProps) => Promise<any>;