Skip to content

support timeout

Compare
Choose a tag to compare
@cuongndc cuongndc released this 09 Sep 03:57
· 5 commits to main since this release
b3157c0

🚀 API

interface Options {
  url?: string;
  headers?: any;
  timeout?: number;
}

hera({
  query: string;
  variables?: any;
  options?: Options;
}) : Promise<{ data: any; errors: any[] }>