16 lines
289 B
JavaScript
16 lines
289 B
JavaScript
// src/start.ts
|
|
function start({ firstName, lastName, age }) {
|
|
console.log("Hello!");
|
|
console.log(firstName, lastName, age);
|
|
}
|
|
|
|
// src/stop.ts
|
|
function stop({ firstName, lastName, age }) {
|
|
console.log("Hello!");
|
|
console.log(firstName, lastName, age);
|
|
}
|
|
export {
|
|
start,
|
|
stop
|
|
};
|