support params in header & request function optional params should at the tail
Closed this issue · 1 comments
diveDylan commented
support params in header & request function optional params should at the tail
diveDylan commented
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