/**
 * 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;
}
