news scroll params

This commit is contained in:
VividTruthKeeper 2023-02-10 01:20:08 +05:00
parent 3a7f764e50
commit 0fad55ef98
1 changed files with 12 additions and 0 deletions

12
src/api/params.ts Normal file
View File

@ -0,0 +1,12 @@
import { IurlParamAdder } from "../types/api.types";
export const newsScrollParams: IurlParamAdder[] = [
{
name: "count",
value: 5,
},
{
name: "page",
value: 1,
},
];