@shopify/shopify-app-remix
Version:
Shopify Remix - to simplify the building of Shopify Apps with Remix
13 lines • 474 B
TypeScript
import { AppConfigArg } from '../../../../config-types';
import { AdminApiContext } from '../../../../clients';
export interface RevokeScopesResponse {
revoked: {
handle: string;
}[];
userErrors: {
field: string;
message: string;
}[];
}
export declare function revokeScopes<ConfigArg extends AppConfigArg>(admin: AdminApiContext<ConfigArg>, scopes: string[]): Promise<RevokeScopesResponse>;
//# sourceMappingURL=revoke-scopes.d.ts.map