12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
/**
|
|
* Simple math utility functions
|
|
*/
|
|
/**
|
|
* Adds 2 and 2 together
|
|
* @returns The sum of 2 + 2
|
|
* @example
|
|
* const result = addTwoPlusTwo();
|
|
* console.log(result); // Output: 4
|
|
*/
|
|
export declare const addTwoPlusTwo: () => number;
|
|
//# sourceMappingURL=math.d.ts.map
|