export interface BaseExecutor { readonly initialValue: any; stream: (...args: any[]) => Omit; execute: (...args: any[]) => any; }