@salesforce/packaging
Version:
Packaging library for the Salesforce packaging platform
8 lines (7 loc) • 414 B
TypeScript
import { Connection, SfProject } from '@salesforce/core';
import { BundleEntry } from '@salesforce/schemas';
import { BundleCreateOptions } from '../interfaces';
export declare function createPackageDirEntry(project: SfProject, options: BundleCreateOptions): BundleEntry;
export declare function createBundle(connection: Connection, project: SfProject, options: BundleCreateOptions): Promise<{
Id: string;
}>;