Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed Jul 28, 2017
1 parent baba47f commit 09744aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/README.md
Expand Up @@ -66,9 +66,9 @@ class GraphQLConfig {
get configDir(): string

getProjectConfig(projectName?: string): GraphQLProjectConfig
getConfigForFile(filePath: string): GraphQLProjectConfig | null
getProjectNameForFile(filePath: string): string | null
getProjects(): { [name: string]: GraphQLProjectConfig }
getConfigForFile(filePath: string): GraphQLProjectConfig | undefined
getProjectNameForFile(filePath: string): string | undefined
getProjects(): { [name: string]: GraphQLProjectConfig } | undefined
}
```

Expand All @@ -95,7 +95,7 @@ class GraphQLProjectConfig {
get extensions(): GraphQLConfigExtensions

// extension related helper functions
get endpointExtension(): GraphQLEndpointExtension | null
get endpointsExtension(): GraphQLEndpointExtension | null
}
```

Expand Down

0 comments on commit 09744aa

Please sign in to comment.