@salesforce/salesforcedx-vscode-test-tools
Version:
Test automation framework for Salesforce Extensions for VS Code
17 lines (16 loc) • 529 B
TypeScript
/**
* Workspace setting keys for Salesforce DX VSCode configuration
*/
export declare const WORKSPACE_SETTING_KEYS: {
ENABLE_SOURCE_TRACKING_FOR_DEPLOY_AND_RETRIEVE: string;
PUSH_OR_DEPLOY_ON_SAVE_ENABLED: string;
PUSH_OR_DEPLOY_ON_SAVE_PREFER_DEPLOY_ON_SAVE: string;
};
/**
* Valid log levels for the application
*/
export declare const LOG_LEVELS: readonly ["trace", "debug", "info", "warn", "error", "silent"];
/**
* Type representing a valid log level
*/
export type LogLevel = (typeof LOG_LEVELS)[number];