@warlock.js/cascade
Version:
ORM for managing databases
31 lines • 572 B
TypeScript
export declare class Pipeline {
readonly name: string;
/**
* Pipeline data
*/
protected pipelineData: any;
/**
* Constructor
*/
constructor(name: string);
/**
* Set a pipeline data
*/
data(data: any): this;
/**
* Get pipeline data
*/
getData(): any;
/**
* Parse the pipeline
*/
parse(): {
[x: string]: any;
};
/**
* Pipeline order
* The lower the number, the higher the priority
*/
sortOrder(): number;
}
//# sourceMappingURL=pipeline.d.ts.map