Add existing project files to Git
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
export * from "./start";
|
||||
export * from "./stop";
|
||||
@@ -0,0 +1,8 @@
|
||||
export function start({ firstName, lastName, age }: {
|
||||
firstName: String;
|
||||
lastName: String;
|
||||
age: Number;
|
||||
}) {
|
||||
console.log("Hello!")
|
||||
console.log(firstName, lastName, age )
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
export function stop({ firstName, lastName, age }: {
|
||||
firstName: String;
|
||||
lastName: String;
|
||||
age: Number;
|
||||
}) {
|
||||
console.log("Hello!")
|
||||
console.log(firstName, lastName, age )
|
||||
}
|
||||
Reference in New Issue
Block a user