frontend/.pnpm-store/v3/files/f7/1105c213127fc69f63e9496f7b6108b9d13c69c5761f2b36a996c790699f8b973afe6b0852355572cdcff0fd3b4eff18192c59dc78952476576c158c43c048

20 lines
630 B
Plaintext

import {
PipelineProcessor,
PipelineProcessorProps,
ProcessorType,
} from '../processor';
import { ServerStorageOptions } from '../../storage/server';
interface ServerGlobalSearchFilterProps extends PipelineProcessorProps {
keyword?: string;
url?: (prevUrl: string, keyword: string) => string;
body?: (prevBody: BodyInit, keyword: string) => BodyInit;
}
declare class ServerGlobalSearchFilter extends PipelineProcessor<
ServerStorageOptions,
ServerGlobalSearchFilterProps
> {
get type(): ProcessorType;
_process(options?: ServerStorageOptions): ServerStorageOptions;
}
export default ServerGlobalSearchFilter;