UNPKG

react-native-template-team-isl

Version:
14 lines (11 loc) 416 B
const Config = { REACT_NATIVE_SERVER_API_URL: 'https://api.jikan.moe/v4', REACT_NATIVE_SERVER_API_FULL_URL: 'https://api.jikan.moe/v4', REACT_NATIVE_SERVER_API_KEY: '', // any ApiKey Here! }; const getFullApiUrl = (endpoint: string | undefined): string | undefined => { if (endpoint && endpoint.length > 0) { return Config.REACT_NATIVE_SERVER_API_FULL_URL + endpoint; } }; export { Config, getFullApiUrl };