8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
|
|
import env from '../index'
|
||
|
|
const dashbord = `${env.API_URI}/dashbord/`
|
||
|
|
|
||
|
|
export default {
|
||
|
|
countDashbordSubHistory: (type: number) => `${dashbord}${type}`,
|
||
|
|
countDashbordHistory: `${dashbord}`
|
||
|
|
}
|