1
2
3
export function multiplicationFunctionTest(a: number, b: number): number {
return a * b;
}