Add existing project files to Git

This commit is contained in:
2024-05-01 19:33:15 +02:00
parent 3968fd5e35
commit 4325b44096
11 changed files with 2147 additions and 30 deletions
+2
View File
@@ -0,0 +1,2 @@
export * from "./start";
export * from "./stop";
+8
View File
@@ -0,0 +1,8 @@
export function start({ firstName, lastName, age }: {
firstName: String;
lastName: String;
age: Number;
}) {
console.log("Hello!")
console.log(firstName, lastName, age )
}
+8
View File
@@ -0,0 +1,8 @@
export function stop({ firstName, lastName, age }: {
firstName: String;
lastName: String;
age: Number;
}) {
console.log("Hello!")
console.log(firstName, lastName, age )
}