15 lines
445 B
TypeScript
15 lines
445 B
TypeScript
import env from '../index'
|
|
const dashbord = `${env.API_URI}/dashbord/`
|
|
const prefix = `${env.API_URI}/prefix/`
|
|
const religion = `${env.API_URI}/religion/`
|
|
const relationship = `${env.API_URI}/relationship/`
|
|
const educationLevel = `${env.API_URI}/education-level/`
|
|
|
|
export default {
|
|
countDashbordSubHistory: (type: number) => `${dashbord}${type}`,
|
|
countDashbordHistory: `${dashbord}`,
|
|
prefix,
|
|
religion,
|
|
relationship,
|
|
educationLevel
|
|
}
|