graphql-engine/frontend/types/externalNotTypesLibs.d.ts
Nicolas Beaussart 6f5bd9cb63 frontend: re import code into new console code
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7280
GitOrigin-RevId: e403f0a05ee94ee0ddac0e263af44b15706a7d00
2022-12-15 10:04:26 +00:00

16 lines
395 B
TypeScript

declare module 'format-graphql' {
export function formatSdl(query: string): string;
}
declare module 'graphiql-code-exporter/lib/snippets';
declare module 'graphiql-code-exporter';
declare module '@walmartlabs/json-to-simple-graphql-schema/lib' {
export function jsonToSchema(options: {
jsonInput: string;
baseType: string;
}): { value: string };
}
declare module 'microfiber';