@salesforce/source-deploy-retrieve
Version:
JavaScript library to run Salesforce metadata deploys and retrieves
12 lines (11 loc) • 513 B
TypeScript
import { SourcePath } from '../../common/types';
import { SourceComponent } from '../sourceComponent';
import { BundleSourceAdapter } from './bundleSourceAdapter';
/**
* Source adapter for WebApplication bundles.
*
* webapplication.json is optional; validated on deploy, skipped on retrieve.
*/
export declare class WebApplicationsSourceAdapter extends BundleSourceAdapter {
protected populate(trigger: SourcePath, component?: SourceComponent, isResolvingSource?: boolean): SourceComponent | undefined;
}