/** GET METHOD */ export const GET = 'GET'; /** POST METHOD */ export const POST = 'POST'; /** PUT METHOD */ export const PUT = 'PUT'; /** PATCH METHOD */ export const PATCH = 'PATCH'; /** DELETE METHOD */ export const DELETE = 'DELETE';