frontend/.pnpm-store/v3/files/c3/d8084d4691d968e13b37d1e3c972fbc0f2979e100ff44edfbfaa06f1aa23540a34b61fbc502d576b6b01f806ce3c55466e1564fd396e7389ff57339c00650f

20 lines
536 B
Plaintext

import Tabular from '../../tabular';
import {
PipelineProcessor,
PipelineProcessorProps,
ProcessorType,
} from '../processor';
import { TCell } from '../../types';
interface GlobalSearchFilterProps extends PipelineProcessorProps {
keyword: string;
selector?: (cell: TCell, rowIndex: number, cellIndex: number) => string;
}
declare class GlobalSearchFilter extends PipelineProcessor<
Tabular,
GlobalSearchFilterProps
> {
get type(): ProcessorType;
_process(data: Tabular): Tabular;
}
export default GlobalSearchFilter;