interface iTasks { react:string[] basicMLOps:string[] animation:string[] nestJs:string[] database:string[]} const Plan = async(plan:iTasks):promise => { const res = await fetch(`${skills}/asdev`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(plan) }) const success = await res.json(); return success;}