mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-09-19 09:40:13 +00:00
10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
export const nrequestMethods: Record<number, string> = {
|
|
1: "GET",
|
|
2: "POST",
|
|
}
|
|
|
|
export const nrequestTypes: Record<number, string> = {
|
|
1: "JSON",
|
|
2: "Form",
|
|
}
|