@unchainedshop/plugins
Version:
Because of a Typescript issue with upstream "postfinancecheckout", the Postfinance plugin has been disabled from transpilation, import the source ts files from src and enable node_module tsc or copy over the src/payment/postfinance-checkout to your projec
15 lines • 534 B
TypeScript
import { WorkData } from '@unchainedshop/core-worker';
export interface FailedReschedulerParams {
retryInput?: (workData: WorkData, priorInput: Record<string, any>) => Promise<Record<string, any> | null>;
}
export type IScheduler<P> = {
key: string;
label: string;
version: string;
actions: (params: P, unchainedAPI: any) => {
start: () => void;
stop: () => void;
};
};
export declare const FailedRescheduler: IScheduler<FailedReschedulerParams>;
//# sourceMappingURL=FailedRescheduler.d.ts.map