You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
386 B

"use strict";
var _model = require("./model.js");
(0, _model.fun1)();
(0, _model.fun2)();
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.fun2 = exports.fun1 = void 0;
var fun1 = function fun1() {
console.log("fun1 is called");
};
exports.fun1 = fun1;
var fun2 = function fun2() {
console.log("fun2 is called");
};
exports.fun2 = fun2;