@shopify/shopify-app-remix
Version:
Shopify Remix - to simplify the building of Shopify Apps with Remix
19 lines • 631 B
TypeScript
import { AppConfigArg } from '../../../../config-types';
import { AdminApiContext } from '../../../../clients';
export interface FetchScopesDetailResponse {
app: {
requestedAccessScopes: {
handle: string;
}[];
optionalAccessScopes: {
handle: string;
}[];
installation: {
accessScopes: {
handle: string;
}[];
};
};
}
export declare function fetchScopeDetail<ConfigArg extends AppConfigArg>(admin: AdminApiContext<ConfigArg>): Promise<FetchScopesDetailResponse>;
//# sourceMappingURL=fetch-scopes-details.d.ts.map