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