import { Action } from "./Action"; import { Changes } from "./Changes"; import { Differ } from "./Differ"; import { Extractor } from "./Extractor"; /** * Chain an Extractor, Differ, and Actions together so that this common flow can be expressed in a type safe way * @param fingerprint format * @param diff format */ export interface Chain { extractor: Extractor; differ: Differ; actions: Array>; } //# sourceMappingURL=Chain.d.ts.map