UNPKG

salesforce-alm

Version:

This package contains tools, and APIs, for an improved salesforce.com developer experience.

17 lines (16 loc) 331 B
/** * Type use for individual elements of a package.xml * ApexClass: Foo */ export interface ManifestEntry { type: string; name: string; } /** * Capture common source scope options across retrieve and deploy. */ export interface SourceOptions { manifest?: string; metadata?: string; sourcepath?: string; }