Skip to content

Commit

Permalink
Offset may be null #7846
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerKiKi committed Apr 30, 2023
1 parent e87e339 commit 9248d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/natural/src/lib/classes/data-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Literal} from '../types/types';

export interface PaginatedData<T> {
readonly items: readonly T[];
readonly offset?: number;
readonly offset?: number | null;
readonly pageSize: number;
readonly pageIndex: number;
readonly length: number;
Expand Down

0 comments on commit 9248d53

Please sign in to comment.