8 lines
229 B
Plaintext
8 lines
229 B
Plaintext
import { Config } from '../config';
|
|
import Pipeline from './pipeline';
|
|
import Tabular from '../tabular';
|
|
declare class PipelineUtils {
|
|
static createFromConfig(config: Config): Pipeline<Tabular>;
|
|
}
|
|
export default PipelineUtils;
|