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
14 lines (13 loc) • 627 B
TypeScript
import { KeyValueProviderInterface } from '../utils/keyValueUtils.js';
export declare class LocalTestProvider implements KeyValueProviderInterface {
name: string;
description: string;
poolStorageLocalFileName: string | null;
initialize(): Promise<boolean>;
getValue(key?: string | null): Promise<any>;
setValue(key: string | null | undefined, value: any): Promise<boolean>;
updateActiveScratchOrg(_scratchOrg: any, _keyValues: any): Promise<null>;
managePoolStorageLocalFileName(key?: string | null): Promise<void>;
userSetup(): Promise<boolean>;
userAuthenticate(): Promise<boolean>;
}