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.
13 lines (12 loc) • 416 B
TypeScript
import { BaseService } from '../infrastructure';
/**
* A service for revoking all API permissions (making the access token unusable after this).
*/
export declare class ApiPermissions extends BaseService {
constructor(shopDomain: string, accessToken: string);
/**
* Deletes all api permissions for this app (revokes access token).
*/
delete(): Promise<void>;
}
export default ApiPermissions;