mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
17 lines
441 B
TypeScript
17 lines
441 B
TypeScript
// @noEmit: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @Filename: requires.d.ts
|
|
declare var module: { exports: any };
|
|
declare function require(name: string): any;
|
|
// @Filename: mod1.js
|
|
/// <reference path='./requires.d.ts' />
|
|
module.exports = 1
|
|
module.exports.f = function () { }
|
|
|
|
// @Filename: a.js
|
|
/// <reference path='./requires.d.ts' />
|
|
var mod1 = require('./mod1')
|
|
mod1.toFixed(12)
|
|
mod1.f() // error, 'f' is not a property on 'number'
|