Skip to content

Commit

Permalink
chore: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Nov 12, 2023
1 parent 6f8e2ed commit 8e2656f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/it-protobuf-stream/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export interface ProtobufStream <Stream = unknown> {
/**
* Encode the passed objects as protobuf messages and write their length-prefixed bytes to the stream as a single write
*/
writeV: <T>(input: Array<T>, proto: { encode: Encoder<T> }, options?: AbortOptions) => Promise<void>
writeV: <T>(input: T[], proto: { encode: Encoder<T> }, options?: AbortOptions) => Promise<void>

/**
* Returns an object with read/write methods for operating on one specific type of protobuf message
Expand Down

0 comments on commit 8e2656f

Please sign in to comment.