Skip to content

Commit

Permalink
fix: Fix the wrong type of stringify() (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuu authored Apr 21, 2024
1 parent 10ac518 commit 6a5d8e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,6 @@ export type TagParam =
export type UserAttribute = number | string | Uint8Array;

export type PostProcess = {
segmentProcessor: ((lines: string[], start: number, end: number, segment: Segment, i: number) => void) | undefined;
variantProcessor: ((lines: string[], start: number, end: number, variant: Variant, i: number) => void) | undefined;
segmentProcessor?: ((lines: string[], start: number, end: number, segment: Segment, i: number) => void);
variantProcessor?: ((lines: string[], start: number, end: number, variant: Variant, i: number) => void);
};

0 comments on commit 6a5d8e3

Please sign in to comment.