mirror of
https://github.com/wx-chevalier/screen-sharing-rdp.git
synced 2025-11-03 02:33:34 +08:00
9 lines
137 B
TypeScript
9 lines
137 B
TypeScript
/**
|
|
* 计算两个值之和
|
|
* @param num1
|
|
* @param num2
|
|
*/
|
|
export function sum(num1: number, num2: number) {
|
|
return num1 + num2;
|
|
}
|