about summary refs log tree commit diff
path: root/boilerplate/typescript/src/math.ts
diff options
context:
space:
mode:
Diffstat (limited to 'boilerplate/typescript/src/math.ts')
-rw-r--r--boilerplate/typescript/src/math.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/boilerplate/typescript/src/math.ts b/boilerplate/typescript/src/math.ts
new file mode 100644
index 000000000000..a6e31168888d
--- /dev/null
+++ b/boilerplate/typescript/src/math.ts
@@ -0,0 +1,3 @@
+export const add = (x: number, y: number): number => {
+  return x + y;
+}