Skip to content

Commit

Permalink
fix(dicomParser):Updating the required arguments to exclude inflater
Browse files Browse the repository at this point in the history
  • Loading branch information
wayfarer3130 committed Feb 7, 2022
1 parent 711b66b commit b6ca4b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ declare module 'dicom-parser' {
export interface ParseDicomOptions {
untilTag?: string;
vrCallback?: (tag: string) => void;
inflater: (arr: Uint8Array, position: number) => void;
inflater?: (arr: Uint8Array, position: number) => void;
}

export function parseDicom(arr: Uint8Array, option?: ParseDicomOptions): DataSet
Expand Down

0 comments on commit b6ca4b9

Please sign in to comment.