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 223 B
//#region src/compat/util/stubObject.d.ts /** * Returns an empty object. * * @returns An empty object. * @example * stubObject() // Returns {} */ declare function stubObject(): any; //#endregion export { stubObject };