es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
19 lines • 319 B
TypeScript
//#region src/compat/util/stubTrue.d.ts
/**
* Returns true.
*
* @returns true.
* @example
* stubTrue() // Returns true
*/
declare function stubTrue(): true;
/**
* Returns true.
*
* @returns true.
* @example
* stubTrue() // Returns true
*/
declare function stubTrue(): true;
//#endregion
export { stubTrue };