UNPKG

@linode/api-v4

Version:
19 lines 560 B
import { Filter, Params, ResourcePage } from '../types'; import { AccountLogin } from './types'; /** * getAccountLogins * * Retrieve a paginated list of logins on your account. * */ export declare const getAccountLogins: (params?: Params, filter?: Filter) => Promise<ResourcePage<AccountLogin>>; /** * getAccountLogin * * Retrieve details for a single login. * * @param loginId { number } The ID of the login to be retrieved * */ export declare const getAccountLogin: (loginId: number) => Promise<AccountLogin>; //# sourceMappingURL=logins.d.ts.map