Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | export const COMPANY_SYSTEM_DEFAULT_BASE_URL = "http://127.0.0.1:4100"; export const COMPANY_SYSTEM_ENDPOINT_PATH = { teams: "/teams", employees: "/employees", leaveEntitlements: "/leave-entitlements", roleProfiles: "/role-profiles", timeOffRequests: "/time-off-requests", } as const; export const COMPANY_SYSTEM_COPY = { requestFailedPrefix: "Company system request failed", noResponseBody: "No response body", } as const; |