Files
psp_panel/src/app/core/constants/defaultData.const.ts
T

7 lines
155 B
TypeScript
Raw Normal View History

2025-12-04 21:07:18 +03:30
import { IPaginatedQuery } from '../models/service.model';
export const PAGINATED_QUERY_DEFAULT_VALUES: IPaginatedQuery = {
page: 1,
pageSize: 50,
2025-12-04 21:07:18 +03:30
};