Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 922 Bytes

Executor.md

File metadata and controls

26 lines (16 loc) · 922 Bytes

Type alias: Executor<T>

Ƭ Executor<T>: (options: T, context: ExecutorContext) => Promise<{ success: boolean }> | AsyncIterableIterator<{ success: boolean }>

Type parameters

Name Type
T any

Type declaration

▸ (options, context): Promise<{ success: boolean }> | AsyncIterableIterator<{ success: boolean }>

Implementation of a target of a project

Parameters
Name Type
options T
context ExecutorContext
Returns

Promise<{ success: boolean }> | AsyncIterableIterator<{ success: boolean }>