Skip to content

Commit f85bc9c

Browse files
committed
fix(sdk): change type any to DocumentNode
1 parent 2990e7b commit f85bc9c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/client/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { DocumentNode } from 'graphql'
12
import inquirer from 'inquirer'
23

34
import { Logger } from '../logger'
@@ -20,7 +21,7 @@ export default abstract class Provider {
2021
throw new Error('Function configure has not been defined')
2122
}
2223

23-
getSchema(): any {
24+
getSchema(): DocumentNode {
2425
throw new Error('Function getSchema has not been defined')
2526
}
2627

0 commit comments

Comments
 (0)