import { Result } from "../common/result"; export interface UseCase { execute(...rest: unknown[]): Promise> | Result | void; }