We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c898a8 commit 1daafe7Copy full SHA for 1daafe7
src/fga/utils/fga-paginatable.ts
@@ -4,14 +4,15 @@ import { Warning } from '../interfaces/warning.interface';
4
import { PaginationOptions } from '../../common/interfaces';
5
6
export class FgaPaginatable<T, P extends PaginationOptions = PaginationOptions> extends AutoPaginatable<T, P> {
7
- protected override list!: FGAList<T>;
+ protected override list: FGAList<T>;
8
9
constructor(
10
list: FGAList<T>,
11
apiCall: (params: PaginationOptions) => Promise<FGAList<T>>,
12
options?: P,
13
) {
14
super(list, apiCall, options);
15
+ this.list = list;
16
}
17
18
get warnings(): Warning[] | undefined {
0 commit comments