inventora-shopify-admin-api
Version:
Shopify Admin API is a NodeJS library built to help developers easily authenticate and make calls against the Shopify API. It was inspired by and borrows heavily from ShopifySharp.
14 lines (13 loc) • 437 B
TypeScript
import { BaseService } from '../infrastructure';
import { AccessScope } from '../interfaces';
/**
* A service for reading access scopes of the current access token
*/
export declare class AccessScopes extends BaseService {
constructor(shopDomain: string, accessToken: string);
/**
* Gets a list of all access scopes enabled for this access token.
*/
list(): Promise<AccessScope[]>;
}
export default AccessScopes;