Skip to content

Commit

Permalink
types: fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
keindev committed Feb 14, 2024
1 parent e8be6ad commit 7403eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class Provider {
/** Access field to the list of queries */
readonly query: IQuery;

#queries: Map<keyof IQuery, IQueryType> = new Map();
readonly #queries: Map<keyof IQuery, IQueryType> = new Map();

constructor(userAgent: string = Provider.DEFAULT_USER_AGENT) {
const client = new GraphQLClient(Provider.ENDPOINT, {
Expand Down

0 comments on commit 7403eeb

Please sign in to comment.