export class AsyncHooksService { /* [MODULES - SHOP] */ public async afterCheckout(): Promise { console.log('[NO ACTION] - afterCheckout'); } public async afterOrderCancel(data,ctx): Promise { console.log('[NO ACTION] - afterCheckout'); } public async afterOrdersMarkOneAsPaid(data,ctx): Promise { console.log('[NO ACTION] - afterCheckout'); } public async afterOrdersMarkOneAsUnPaid(data,ctx): Promise { console.log('[NO ACTION] - afterCheckout'); } public async afterOrdersReimbursed(data,ctx): Promise { console.log('[NO ACTION] - afterOrdersReimbursed'); } /* [MODULES - EVENTS] */ public async afterCheckoutEvent(): Promise { console.log('[NO ACTION] - afterCheckout'); } }