diff --git a/src/deployer.ts b/src/deployer.ts index 5c5a0bf6..4ecc5d81 100644 --- a/src/deployer.ts +++ b/src/deployer.ts @@ -27,7 +27,7 @@ export type DeployerOptions = JsonMap; * 'Salesforce Functions': { username: 'user@salesforce.com' }, * } */ -export interface ProjectDeployOptions { +export interface DeployOptions { [key: string]: T; } diff --git a/src/exported.ts b/src/exported.ts index 409d4738..243d19ae 100644 --- a/src/exported.ts +++ b/src/exported.ts @@ -6,5 +6,5 @@ */ export { generateTableChoices } from './util'; -export { Deployable, Deployer, ProjectDeployOptions, DeployerOptions, Preferences } from './deployer'; +export { Deployable, Deployer, DeployOptions, DeployerOptions, Preferences } from './deployer'; export { Prompter } from './prompter';