Skip to content

Commit

Permalink
Merge pull request #187 from mrmrmrfinch/master
Browse files Browse the repository at this point in the history
  • Loading branch information
chhoumann authored Feb 1, 2022
2 parents efc37e0 + d8d6a9c commit 67f7c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quickAddApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class QuickAddApi {
public static GetApi(app: App, plugin: QuickAdd, choiceExecutor: IChoiceExecutor) {
return {
inputPrompt: (header: string, placeholder?: string, value?: string) => {return this.inputPrompt(app, header, placeholder, value)},
wideInputPrompt: (header: string, placeholder?: string, value?: string) => {return this.inputPrompt(app, header, placeholder, value)},
wideInputPrompt: (header: string, placeholder?: string, value?: string) => {return this.wideInputPrompt(app, header, placeholder, value)},
yesNoPrompt: (header: string, text?: string) => {return this.yesNoPrompt(app, header, text)},
suggester: (displayItems: string[] | ((value: string, index?: number, arr?: string[]) => string[]), actualItems: string[]) => {return this.suggester(app, displayItems, actualItems)},
checkboxPrompt: (items: string[], selectedItems?: string[]) => {return this.checkboxPrompt(app, items, selectedItems)},
Expand Down

0 comments on commit 67f7c74

Please sign in to comment.