7 lines
288 B
TypeScript
7 lines
288 B
TypeScript
import { BatchClusterOptions, WithObserver } from "./BatchClusterOptions";
|
|
import { BatchProcessOptions } from "./BatchProcessOptions";
|
|
export interface InternalBatchProcessOptions extends BatchProcessOptions, BatchClusterOptions, WithObserver {
|
|
passRE: RegExp;
|
|
failRE: RegExp;
|
|
}
|