How to make the function of a particular method be determined as a function rather than a quantity by idea?

the @ FIXME portion of the following code is judged to be just a function value

export function a() {}
export const b = function () {};
export const c = () => {};
export const d = (() => {return () => {}})(); // <== @FIXME;
export const A = { a, };
export const B = { b, } as {
    b: typeof b, // <== @FIXME
};

// all is func type // ---------------------

// know these is a func

console.log(a, b, c);
console.log(A.a);

// --------------------

// @FIXME but think these is a var with func value

console.log(d);
console.log(B.b);

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3697e-2c02c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3697e-2c02c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?