export type CallBackFunction = (arg: TArg) => void; export type CallBackFunctionWithPromise = (arg: TArg) => Promise; export interface IUseCase { execute(callBack: CallBackFunction | undefined): Promise; } //# sourceMappingURL=IUseCase.d.ts.map