Skip to content

Commit

Permalink
fix: rename ProjectDeployOptions to DeployOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Jul 15, 2021
1 parent 528ef10 commit eafefcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/deployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export type DeployerOptions = JsonMap;
* 'Salesforce Functions': { username: 'user@salesforce.com' },
* }
*/
export interface ProjectDeployOptions<T extends DeployerOptions = DeployerOptions> {
export interface DeployOptions<T extends DeployerOptions = DeployerOptions> {
[key: string]: T;
}

Expand Down
2 changes: 1 addition & 1 deletion src/exported.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

0 comments on commit eafefcf

Please sign in to comment.