Add declaration file for modules that doesn't have one.

This commit is contained in:
lonyele 2019-05-26 21:17:43 +09:00
parent 6f8650eb93
commit 5d874e6ae2

7
addons/graphql/src/typings.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
declare module 'global';
// There are no types for graphiql
declare module 'graphiql' {
const GraphiQL: any;
export default GraphiQL;
}