UNPKG

n8n

Version:

n8n Workflow Automation Tool

4 lines (3 loc) 337 B
import type { CursorPagination, OffsetPagination, PaginationCursorDecoded, PaginationOffsetDecoded } from '../../../types'; export declare const decodeCursor: (cursor: string) => PaginationOffsetDecoded | PaginationCursorDecoded; export declare const encodeNextCursor: (pagination: OffsetPagination | CursorPagination) => string | null;