5 lines
142 B
TypeScript
5 lines
142 B
TypeScript
export type CrudQueryParamsModeType = "list" | "entry"| "add"| "edit"
|
|
export const crudQueryParamsMode = {
|
|
list: 'list',
|
|
entry: 'entry',
|
|
} |