11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
//#region src/compat/util/stubObject.d.ts
|
|
/**
|
|
* Returns an empty object.
|
|
*
|
|
* @returns {Object} An empty object.
|
|
* @example
|
|
* stubObject() // Returns {}
|
|
*/
|
|
declare function stubObject(): any;
|
|
//#endregion
|
|
export { stubObject }; |