sussy-util
Version:
Util package made by me
9 lines (8 loc) • 328 B
TypeScript
/**
* Converts the provided value to undefined and returns it.
* @template T - The type of the value to convert.
* @param {T} sus - The value to convert.
* @returns {undefined} The converted value, which is always undefined.
*/
declare const convertToUndefined: <T>(sus: T) => undefined;
export default convertToUndefined;