
The creation of a single repository is no longer relevant. Therefore, we have to separate the front and back repo into two distinct repositories. This PR allows to repatriate the work on dev branch
5 lines
132 B
TypeScript
5 lines
132 B
TypeScript
export default abstract class BaseRepository {
|
|
protected readonly maxFetchRows = 100;
|
|
protected readonly defaultFetchRows = 50;
|
|
}
|