frontend/.pnpm-store/v3/files/d2/8e47cbf11ee650e91e0aa2b6ec414d5373f742f006d836a9a44abb07132a38151c6c7855c8eaddffdb16d0323c4c5984684fe8dcfeeb0a90907ec387e04fc2

20 lines
471 B
Plaintext

import Tabular from '../../tabular';
import {
PipelineProcessor,
PipelineProcessorProps,
ProcessorType,
} from '../processor';
interface PaginationLimitProps extends PipelineProcessorProps {
page: number;
limit: number;
}
declare class PaginationLimit extends PipelineProcessor<
Tabular,
PaginationLimitProps
> {
protected validateProps(): void;
get type(): ProcessorType;
protected _process(data: Tabular): Tabular;
}
export default PaginationLimit;