UNPKG

@atrysglobal/babel-ripper

Version:

Interface and strict typing toolkit for accessing the BABEL unified translation service.

38 lines (37 loc) 666 B
/** * List of Headers Allowed by this * service. * */ export declare enum ALLOWED_HEADERS { LOCALE = "locale", API_KEY = "X-Api-Key" } /** * List of available Babel Translation * Service's features. Organized by * endpoints. * */ export declare enum BABEL_FEATURES { MESSAGING = "messaging", INTERPRETER = "interpreter" } export declare enum HTTP_VERB { POST = "POST", GET = "GET", PUT = "PUT", PATH = "PATH", DELETE = "DELETE" } /** * Supported Locale Codes */ export declare enum LOCALES { es_ES = "es_ES", es_CO = "es_CO", es_AR = "es_AR", es_CL = "es_CL", pt_BR = "pt_BR", en_US = "en_US" }