houdini 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,17 +1,6 @@
1
1
  import * as graphql from 'graphql';
2
2
  import type { Config, Document, ValueMap } from '../../lib';
3
- import type { FragmentDependency } from './collectDefinitions';
4
3
  export default function fragmentVariables(config: Config, documents: Document[]): Promise<void>;
5
- export declare function inlineFragmentArgs({ config, filepath, fragmentDefinitions, document, generatedFragments, visitedFragments, scope, newName, }: {
6
- config: Config;
7
- filepath: string;
8
- fragmentDefinitions: Record<string, FragmentDependency>;
9
- document: graphql.ASTNode;
10
- generatedFragments: Record<string, graphql.FragmentDefinitionNode>;
11
- visitedFragments: Set<string>;
12
- scope: ValueMap | undefined | null;
13
- newName?: string;
14
- }): any;
15
4
  export declare function withArguments(config: Config, node: graphql.FragmentSpreadNode): graphql.ArgumentNode[];
16
5
  export type FragmentArgument = {
17
6
  name: string;