UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

11 lines (9 loc) 179 B
/** * Returns an empty object. * * @returns {Object} An empty object. * @example * stubObject() // Returns {} */ declare function stubObject(): any; export { stubObject };