mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
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
|
||
|
}
|
||
|
}
|