UNPKG

salesforce-alm

Version:

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

11 lines (10 loc) 692 B
import { MetadataType } from '../metadataType'; import { ContentDecompositionStrategy } from './contentDecompositionStrategy'; export declare class StaticResourceContentStrategy implements ContentDecompositionStrategy { metadataType: MetadataType; metadataRegistry: any; workspaceVersion: any; constructor(metadataType: MetadataType, metadataRegistry: any, workspaceVersion: any); getContentPaths(metadataFilePath: string): string[]; saveContent(metadataFilePath: any, retrievedContentFilePaths: any, retrievedMetadataFilePath: any, createDuplicates: any, unsupportedMimeTypes: string[], forceoverwrite?: boolean): Promise<[string[], string[], string[], string[]]>; }