1

私はgraphql-tagを使用しています。私のファイルはそのようなものです。

./operation.graphql

Query User {
   ...
}

./test.ts

import { User } from './operation.graphql'; /// Module ''*.graphql'' has no exported member 'User'.

./index.d.ts

declare module '*.graphql' {
    import { DocumentNode } from 'graphql';

    const value:DocumentNode;

    export default value;
}

アプリケーションはうまく動作していますが、そのエラーを防ぎたいです。

デフォルトのインポートはうまくいきますが、ご覧のとおり、名前付きインポートでエラーが発生しました。

これを宣言する方法は?ありがとう。:)

4

1 に答える 1