extendedpaginatedmessage
export class ExtendedPaginatedMessage extends PaginatedMessage {
constructor() {
super();
Object.defineProperty(this, 'maximumPageAmount', { value: 100 });
}
}
this is the correct way to extend it ?
constructor() {
super();
Object.defineProperty(this, 'maximumPageAmount', { value: 100 });
}
}
this is the correct way to extend it ?
