Add other function to foo.ts

This commit is contained in:
Andrew Morris
2023-03-09 15:42:32 +11:00
parent e50ad6bf59
commit 2f98bf28ee

View File

@@ -1,3 +1,7 @@
export default function foo() {
return "this is the foo function";
}
export function other() {
return "this is the other function";
}