n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 354 B
TypeScript
import type { ValidatorConstraintInterface, ValidationArguments } from 'class-validator';
export declare class WorkflowSortByParameter implements ValidatorConstraintInterface {
validate(text: string, _: ValidationArguments): boolean;
defaultMessage(_: ValidationArguments): string;
}
export declare class WorkflowSorting {
sortBy?: string;
}