Hussein
Hussein
Test case: ``` CREATE TABLE tu(x bigint); INSERT INTO tu(x) VALUES(1); create function fu() returns tu as $$ select * from tu LIMIT 1 $$ language sql; ``` Now add...
I think: https://github.com/graphile/graphile-engine/blob/1bc8cfefdab7a61fd7ad287bcdff66298352e308/packages/graphile-build/src/SchemaBuilder.d.ts#L40 instead of never, I think should be an-empty-object. It matters a little, because when you provide a hook function, now you need to trick typescript into thinking...
Given the message: ``` message Amount { Currency currency = 1; int64 old_value = 2 [deprecated = true]; double value = 3; } ``` ts-proto generates: ``` export interface Amount...