phero-hq / phero

Full-stack type-safety with pure TypeScript

Home Page:https://phero.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support object/array binding patterns in parameter names

kamilafsar opened this issue · comments

Currently we don't support object/array binding syntax in RPC arguments, like this:

export async function xxx([aap, noot]: [string, string]): Promise<void> {
}
export async function yyy({aap, noot}: {aap: string, noot: string}): Promise<void> {
}