bull-stepfunction
Version:
run bullQ job like AWS stepfunction
18 lines (17 loc) • 676 B
TypeScript
declare const V: {
setTypeId: (Id: string, Type: string) => void;
setEndIdinId: (Id: string, upperId: string) => void;
setIdLength: (Id: string, length: number) => void;
setIdResult: (Id: string, value: any) => void;
setIdinId: (Id: string, upperId: string) => void;
setPosId: (Id: string, Pos: string) => void;
getEndIdinId: (Id: string) => any;
getIdLength: (Id: string) => any;
getIdResult: (Id: string) => any;
getIdinId: (Id: string) => any;
getPosId: (Id: string) => any;
getTypeId: (Id: string) => any;
getAllEndID: () => any;
pushToResult: (Id: string, value: any) => void;
};
export default V;