pregalaxyer/nemo

support params in header & request function optional params should at the tail

Closed this issue · 1 comments

support params in header & request function optional params should at the tail

function params is variable not string, so error comes when we use string as parameters

// ❌
function examples('user-name': string) {

}
// ✅
function examples(userName: string) {

}

// for request function in services
// we use alias and name together