File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -455,4 +455,25 @@ export type DynamicRecord<K extends PropertyKey> = {
455
455
: never
456
456
}
457
457
458
+ // Comments variations
459
+ /**
460
+ * Regular expression patterns used throughout the module
461
+ */
462
+ interface RegexPatterns {
463
+ /** Import type declarations */
464
+ readonly typeImport : RegExp
465
+ /** Regular import declarations */
466
+ readonly regularImport : RegExp
467
+ /** Async function declarations */
468
+ readonly asyncFunction : RegExp
469
+ /** Generic type parameters */
470
+ readonly functionOverload : RegExp
471
+ /** Module declaration pattern */
472
+ readonly moduleDeclaration : RegExp
473
+ /**
474
+ * Module augmentation pattern
475
+ */
476
+ readonly moduleAugmentation : RegExp
477
+ }
478
+
458
479
export default dts
Original file line number Diff line number Diff line change @@ -174,6 +174,25 @@ export declare type DynamicRecord<K extends PropertyKey> = {
174
174
? Record < string , unknown >
175
175
: never
176
176
}
177
+ /**
178
+ * Regular expression patterns used throughout the module
179
+ */
180
+ /** Import type declarations */
181
+ /** Regular import declarations */
182
+ /** Async function declarations */
183
+ /** Generic type parameters */
184
+ /** Module declaration pattern */
185
+ /**
186
+ * Module augmentation pattern
187
+ */
188
+ declare interface RegexPatterns {
189
+ readonly typeImport : RegExp
190
+ readonly regularImport : RegExp
191
+ readonly asyncFunction : RegExp
192
+ readonly functionOverload : RegExp
193
+ readonly moduleDeclaration : RegExp
194
+ readonly moduleAugmentation : RegExp
195
+ }
177
196
178
197
export { generate , dtsConfig }
179
198
export type { DtsGenerationOption }
You can’t perform that action at this time.
0 commit comments