import { ExecutorLink } from "@graphql-tools/executor-apollo-link";
import { HTTPExecutorOptions } from "@graphql-tools/executor-http";

//#region src/index.d.ts
type YogaLinkOptions = HTTPExecutorOptions;
declare class YogaLink extends ExecutorLink {
  constructor(options: YogaLinkOptions);
}
//#endregion
export { YogaLink, YogaLinkOptions };