quotesDelete: "quotesDelete" = 'quotesDelete'

Method name for PRE quotesDeletePre and POST quotesDelete

This method is triggered after pressing the Delete button on quote detail page /#/qc/quotes/<quoteId>, or when deleting from quotes list /#/qc/quotes.

Notes: POST and PRE returns same deletedQuotes array of object.

Additional Properties:

  • deletedQuotes: Returns array of object of the deleted quotes.

Example: (Basic)

export const quotesDelete = async ({ api, deletedQuotes }) => {
// TODO: Add your code
return;
}

Generated using TypeDoc