UNPKG

@toreda/types

Version:

Common mappings, aliases, and types used in Toreda TypeScript packages.

9 lines (8 loc) 183 B
export interface RunnableOutcome<ReturnT> { returnValue: ReturnT | null; execution: { errors: Error[]; complete: boolean; exception: boolean; }; }