Openstatus www.openstatus.dev
at 4c0f4c00a38753a5d0dfd7e7b7b7706dec6f1503 27 lines 413 B view raw
1export const codesDict = { 2 "1xx": { 3 prefix: 1, 4 label: "1xx", 5 name: "Informational", 6 }, 7 "2xx": { 8 prefix: 2, 9 label: "2xx", 10 name: "Successfull", 11 }, 12 "3xx": { 13 prefix: 3, 14 label: "3xx", 15 name: "Redirection", 16 }, 17 "4xx": { 18 prefix: 4, 19 label: "4xx", 20 name: "Client Error", 21 }, 22 "5xx": { 23 prefix: 5, 24 label: "5xx", 25 name: "Server Error", 26 }, 27} as const;