@@ -64,26 +64,26 @@ export interface DefaultGeneric<
6464/**
6565 * Regular expression patterns used throughout the module
6666 */
67- interface RegexPatterns {
68- /** Import type declarations */
69- readonly typeImport : RegExp
70- /** Regular import declarations */
71- readonly regularImport : RegExp
72- /** Async function declarations */
73- readonly asyncFunction : RegExp
74- /** Generic type parameters */
75- readonly functionOverload : RegExp
76- /** Module declaration pattern */
77- readonly moduleDeclaration : RegExp
78- /**
79- * Module augmentation pattern
80- */
81- readonly moduleAugmentation : RegExp
82- }
67+ // interface RegexPatterns {
68+ // /** Import type declarations */
69+ // readonly typeImport: RegExp
70+ // /** Regular import declarations */
71+ // readonly regularImport: RegExp
72+ // /** Async function declarations */
73+ // readonly asyncFunction: RegExp
74+ // /** Generic type parameters */
75+ // readonly functionOverload: RegExp
76+ // /** Module declaration pattern */
77+ // readonly moduleDeclaration: RegExp
78+ // /**
79+ // * Module augmentation pattern
80+ // */
81+ // readonly moduleAugmentation: RegExp
82+ // }
8383
84- export interface ImportTrackingState {
85- typeImports : Map < string , Set < string > >
86- valueImports : Map < string , Set < string > >
87- usedTypes : Set < string >
88- usedValues : Set < string >
89- }
84+ // export interface ImportTrackingState {
85+ // typeImports: Map<string, Set<string>>
86+ // valueImports: Map<string, Set<string>>
87+ // usedTypes: Set<string>
88+ // usedValues: Set<string>
89+ // }
0 commit comments