@jsse/quick-maths
Version:
55 lines (51 loc) • 1.39 kB
TypeScript
export { default as SEVENTEEN_THIRTY_EIGHT, SIX_SEVEN_NINE, is1738, is679 } from './fetty-wap-const.js';
/**
* Quick maths
* Returns 3 after doing some quick maths
*
* Academic Reference: https://youtu.be/3M_5oYU-IsU?t=60
*
* @returns {number} 3
* @example
* quickmaths(); // 3
*
*/
declare function quickmaths(): number;
/**
* missy elliott protocol as described by Missy Elliott, PHD in her thesis "Work It" (2002)
*
* REF: https://youtu.be/cjIvu7e6Wq8?si=lhf_PiT6hsUUxC_1&t=31
*/
type MissyElliottProtocol<TThang, TThangDown, TThangFlipped, TThangReversed> = {
/**
* Puts the thang down
* @param thang
* @returns
*/
putThangDown: (thang: TThang) => TThangDown;
/**
* Flips the thang
* @param thang
* @returns
*/
flipIt: (thang: TThangDown) => TThangFlipped;
/**
* Reverses the thang
* @param thang
* @returns
*/
reverseIt: (thang: TThangFlipped) => TThangReversed;
/**
* Puts the thang down, flips it, and reverses it
* @param thang
* @returns
*/
putThangDownFlipItReverseIt: (thang: TThang) => TThangReversed;
/**
* Inverts putting the thang down flipping it and reversing it
* @param thang
* @returns
*/
tIesreveRtIpilFnwoDgnahTtup: (thangReversed: TThangReversed) => TThang;
};
export { type MissyElliottProtocol, quickmaths };