shipstation-node
Version:
Unofficial Node.js wrapper for the ShipStation API
13 lines (12 loc) • 463 B
TypeScript
import type ShipStation from '../../BaseAPI';
import { BaseResource } from '../../BaseResource';
import type { ListUsersOptions, ListUsersResponse } from '../types';
export declare class Users extends BaseResource {
constructor(shipstation: ShipStation);
/**
* [Official Documentation](https://www.shipstation.com/docs/api/users/list/)
*
* @returns A list of users.
*/
list(params: ListUsersOptions): Promise<ListUsersResponse>;
}