frontend/.pnpm-store/v3/files/0d/b9ffade949e755baaa578f3f0537d318e8cbcc5629ccc1bada0658555fe38e6b514e09d3f04419671fa0e2581cda85ea1eb61622af1c8c6649302f6f99bdf1

21 lines
637 B
Plaintext

import {
PipelineProcessor,
PipelineProcessorProps,
ProcessorType,
} from '../processor';
import { ServerStorageOptions } from '../../storage/server';
import { TColumnSort } from '../../types';
interface ServerSortProps extends PipelineProcessorProps {
columns: TColumnSort[];
url?: (prevUrl: string, columns: TColumnSort[]) => string;
body?: (prevBody: BodyInit, columns: TColumnSort[]) => BodyInit;
}
declare class ServerSort extends PipelineProcessor<
ServerStorageOptions,
ServerSortProps
> {
get type(): ProcessorType;
_process(options?: ServerStorageOptions): ServerStorageOptions;
}
export default ServerSort;