mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
1df3ba4531
* Initial GraphQL support * Better error handling and formatting
16 lines
301 B
JavaScript
16 lines
301 B
JavaScript
declare module 'graphql' {
|
|
declare module.exports: *
|
|
}
|
|
|
|
declare module 'graphql/utilities/introspectionQuery' {
|
|
declare module.exports: {
|
|
introspectionQuery: string
|
|
}
|
|
}
|
|
|
|
declare module 'graphql/utilities/buildClientSchema' {
|
|
declare module.exports: {
|
|
buildClientSchema: Function
|
|
}
|
|
}
|