Skip to content

Commit

Permalink
docs(proto-loader): fix docs for options.bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
kilianc committed Jun 8, 2021
1 parent 47ac924 commit 3623179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/proto-loader/README.md
Expand Up @@ -33,7 +33,7 @@ The options parameter is an object that can have the following optional properti
| `keepCase` | `true` or `false` | Preserve field names. The default is to change them to camel case.
| `longs` | `String` or `Number` | The type to use to represent `long` values. Defaults to a `Long` object type.
| `enums` | `String` | The type to use to represent `enum` values. Defaults to the numeric value.
| `bytes` | `Array` or `String` | The type to use to represent `bytes` values. Defaults to `Buffer`.
| `bytes` | `Array`, `String` or `Buffer` | The type to use to represent `bytes` values. Defaults to `Buffer`.
| `defaults` | `true` or `false` | Set default values on output objects. Defaults to `false`.
| `arrays` | `true` or `false` | Set empty arrays for missing array values even if `defaults` is `false` Defaults to `false`.
| `objects` | `true` or `false` | Set empty objects for missing object values even if `defaults` is `false` Defaults to `false`.
Expand Down

0 comments on commit 3623179

Please sign in to comment.