20 lines
723 B
TypeScript
20 lines
723 B
TypeScript
import { AuthTokenPromotionListInstance } from "./accounts/v1/authTokenPromotion";
|
|
import { CredentialListInstance } from "./accounts/v1/credential";
|
|
import { SecondaryAuthTokenListInstance } from "./accounts/v1/secondaryAuthToken";
|
|
import AccountsBase from "./AccountsBase";
|
|
declare class Accounts extends AccountsBase {
|
|
/**
|
|
* @deprecated - Use v1.authTokenPromotion; instead
|
|
*/
|
|
get authTokenPromotion(): AuthTokenPromotionListInstance;
|
|
/**
|
|
* @deprecated - Use v1.credentials; instead
|
|
*/
|
|
get credentials(): CredentialListInstance;
|
|
/**
|
|
* @deprecated - Use v1.secondaryAuthToken; instead
|
|
*/
|
|
get secondaryAuthToken(): SecondaryAuthTokenListInstance;
|
|
}
|
|
export = Accounts;
|