mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
e58a550cc8
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7523 GitOrigin-RevId: 0ade4563d4d189dd2c74c8fd6760bc2bd4c47b75
18 lines
438 B
TypeScript
18 lines
438 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';
|
|
|
|
declare module 'react-progress-bar-plus';
|