14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
export const getItem = (test:any,test2:any):any=>{return null}
|
|
export const getItemHierarchy = (test:any,test2:any):any =>{return null}
|
|
export const searchItem = (test:any,test2:any):any[] =>{ return [
|
|
{
|
|
item:{
|
|
_id: 'ABCDE',
|
|
_name: 'Name',
|
|
},
|
|
locale:{
|
|
name: "test"
|
|
}
|
|
|
|
}
|
|
]} |