es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
19 lines (17 loc) • 288 B
TypeScript
/**
* Returns true.
*
* @returns {boolean} true.
* @example
* stubTrue() // Returns true
*/
declare function stubTrue(): true;
/**
* Returns true.
*
* @returns {boolean} true.
* @example
* stubTrue() // Returns true
*/
declare function stubTrue(): true;
export { stubTrue };