Skip to content

Commit 3c751ec

Browse files
committed
Update baseline
1 parent 89974bd commit 3c751ec

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

tests/baselines/reference/moduleExportAlias.types

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -224,19 +224,19 @@ multipleDeclarationAlias5.func9 = function () { };
224224
>function () { } : () => void
225225

226226
var multipleDeclarationAlias6 = exports = module.exports = {};
227-
>multipleDeclarationAlias6 : {}
228-
>exports = module.exports = {} : {}
227+
>multipleDeclarationAlias6 : { [x: string]: any; }
228+
>exports = module.exports = {} : { [x: string]: any; }
229229
>exports : any
230-
>module.exports = {} : {}
230+
>module.exports = {} : { [x: string]: any; }
231231
>module.exports : any
232232
>module : any
233233
>exports : any
234-
>{} : {}
234+
>{} : { [x: string]: any; }
235235

236236
multipleDeclarationAlias6.func10 = function () { };
237237
>multipleDeclarationAlias6.func10 = function () { } : () => void
238238
>multipleDeclarationAlias6.func10 : any
239-
>multipleDeclarationAlias6 : {}
239+
>multipleDeclarationAlias6 : { [x: string]: any; }
240240
>func10 : any
241241
>function () { } : () => void
242242

@@ -295,13 +295,13 @@ module.exports.func12 = function () { };
295295
>function () { } : () => void
296296

297297
exports = module.exports = {};
298-
>exports = module.exports = {} : {}
298+
>exports = module.exports = {} : { [x: string]: any; }
299299
>exports : any
300-
>module.exports = {} : {}
300+
>module.exports = {} : { [x: string]: any; }
301301
>module.exports : any
302302
>module : any
303303
>exports : any
304-
>{} : {}
304+
>{} : { [x: string]: any; }
305305

306306
exports.func13 = function () { };
307307
>exports.func13 = function () { } : () => void
@@ -320,13 +320,13 @@ module.exports.func14 = function () { };
320320
>function () { } : () => void
321321

322322
exports = module.exports = {};
323-
>exports = module.exports = {} : {}
323+
>exports = module.exports = {} : { [x: string]: any; }
324324
>exports : any
325-
>module.exports = {} : {}
325+
>module.exports = {} : { [x: string]: any; }
326326
>module.exports : any
327327
>module : any
328328
>exports : any
329-
>{} : {}
329+
>{} : { [x: string]: any; }
330330

331331
exports.func15 = function () { };
332332
>exports.func15 = function () { } : () => void
@@ -370,11 +370,11 @@ module.exports.func18 = function () { };
370370
>function () { } : () => void
371371

372372
module.exports = {};
373-
>module.exports = {} : {}
373+
>module.exports = {} : { [x: string]: any; }
374374
>module.exports : any
375375
>module : any
376376
>exports : any
377-
>{} : {}
377+
>{} : { [x: string]: any; }
378378

379379
exports.func19 = function () { };
380380
>exports.func19 = function () { } : () => void

0 commit comments

Comments
 (0)