ts-codemod-lib 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -146,8 +146,7 @@ type ReadonlyTransformerOptionsInternal = Readonly<{
146
146
 
147
147
  ignoredPrefixes: ISet<string>;
148
148
 
149
- // eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types -- ts-morph uses mutable types
150
- debugPrint: (...args: unknown[]) => void;
149
+ debugPrint: (...args: readonly unknown[]) => void;
151
150
  replaceNode: (node: tsm.Node, newNodeText: string) => void;
152
151
  }>;
153
152