Sam Aouar

Results 4 comments of Sam Aouar

A Tuple would do the job. ``` type UserArgs = ( [/* name */ string] | [/* name */ string, /* email */ string] ); export class User extends jspb.Message...

`filterNullChildren` should filter for undefined children.

@chase-metzger can you share your setup, patches, or code changes? Thanks!

What about use a timestamp decorator? ``` @timestamp class User extends Document { } ``` You could pass timestamp field names too: ``` @timestamp({ created_at: 'createdTime', updated_at: 'updatedTime' }) class...