more lint

This commit is contained in:
Mantas Vidutis 2022-11-24 12:56:52 -08:00
parent a83ad207dd
commit 7e151f3f7b
No known key found for this signature in database
GPG Key ID: 60BDC8CD8FA60E29

View File

@ -2,10 +2,10 @@ import {
QueryClientImpl,
QueryGrantsResponse,
QueryGranterGrantsResponse,
QueryGranteeGrantsResponse
QueryGranteeGrantsResponse,
} from "cosmjs-types/cosmos/authz/v1beta1/query";
import {createPagination, createProtobufRpcClient, QueryClient} from "../../queryclient";
import { createPagination, createProtobufRpcClient, QueryClient } from "../../queryclient";
export interface AuthzExtension {
readonly authz: {
@ -20,9 +20,9 @@ export interface AuthzExtension {
paginationKey?: Uint8Array,
) => Promise<QueryGranteeGrantsResponse>;
readonly granterGrants: (
granter: string,
granter: string,
paginationKey?: Uint8Array,
) => Promise<QueryGranterGrantsResponse>;
) => Promise<QueryGranterGrantsResponse>;
};
}