turkmentv_front/typings/params.type.ts

12 lines
158 B
TypeScript
Raw Permalink Normal View History

2024-08-19 12:44:56 +00:00
export interface IParam {
isFirst?: boolean;
name: string;
value: string | number;
}
export interface IPageParams {
params: {
id: string;
};
}