@shipengine/connect
Version:
The official developer tooling for building ShipEngine connect apps
12 lines (11 loc) • 341 B
TypeScript
import { AppUser } from '../../types';
import AppsAPIClient from '..';
export default class Users {
private client;
constructor(apiClient: AppsAPIClient);
/**
* Gets the current user for the given API key.
* @returns {Promise<AppUser>} Promise that resolves to an AppUser.
*/
getCurrent(): Promise<AppUser>;
}