sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
15 lines (14 loc) • 379 B
TypeScript
export interface AuthOrgOptions {
checkAuth?: boolean;
argv?: string[];
debug?: boolean;
scratch?: boolean;
setDefault?: boolean;
forceUsername?: string;
Command?: {
flags?: Record<string, any>;
id?: string;
};
[key: string]: any;
}
export declare function authOrg(orgAlias: string, options: AuthOrgOptions): Promise<boolean>;