33 lines
716 B
TypeScript
33 lines
716 B
TypeScript
// deno-lint-ignore-file no-explicit-any
|
|
import type { TaggedError } from "@fabric/core";
|
|
import type { UseCase } from "./use-case.ts";
|
|
|
|
export type UseCaseDefinition<
|
|
TDependencies = any,
|
|
TPayload = any,
|
|
TOutput = any,
|
|
TErrors extends TaggedError<string> = any,
|
|
> = BasicUseCaseDefinition<TDependencies, TPayload, TOutput, TErrors>;
|
|
|
|
interface BasicUseCaseDefinition<
|
|
TDependencies,
|
|
TPayload,
|
|
TOutput,
|
|
TErrors extends TaggedError<string>,
|
|
> {
|
|
/**
|
|
* The use case name.
|
|
*/
|
|
name: string;
|
|
|
|
/**
|
|
* Whether the use case requires authentication or not.
|
|
*/
|
|
isAuthRequired: boolean;
|
|
|
|
/**
|
|
* The use case function.
|
|
*/
|
|
useCase: UseCase<TDependencies, TPayload, TOutput, TErrors>;
|
|
}
|