Browse Source

First bitta TS done

master
James McKenzie 3 years ago
commit
a6d2ce5903
7 changed files with 1685 additions and 0 deletions
  1. +1
    -0
      TSLearning/Section 1/.gitignore
  2. +8
    -0
      TSLearning/Section 1/app.js
  3. +9
    -0
      TSLearning/Section 1/app.ts
  4. +8
    -0
      TSLearning/Section 1/firstBit.ts
  5. +14
    -0
      TSLearning/Section 1/index.html
  6. +1630
    -0
      TSLearning/Section 1/package-lock.json
  7. +15
    -0
      TSLearning/Section 1/package.json

+ 1
- 0
TSLearning/Section 1/.gitignore View File

@@ -0,0 +1 @@
node_modules/

+ 8
- 0
TSLearning/Section 1/app.js View File

@@ -0,0 +1,8 @@
function sendRequest(data, cb) {
// ... sending a request with "data"
return cb({ data: 'Hi there!' });
}
sendRequest('Send this!', function (response) {
console.log(response);
return true;
});

+ 9
- 0
TSLearning/Section 1/app.ts View File

@@ -0,0 +1,9 @@
function sendRequest(data: string, cb: (response: any) => void) {
// ... sending a request with "data"
return cb({data: 'Hi there!'});
}
sendRequest('Send this!', (response) => {
console.log(response);
return true;
});

+ 8
- 0
TSLearning/Section 1/firstBit.ts View File

@@ -0,0 +1,8 @@
function add(n1 :number, n2 :number){
return n1 + n2;
}
const number1 = 5;
const number2 = 3.3;

const result = add(number1, number2);
console.log(result);

+ 14
- 0
TSLearning/Section 1/index.html View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typescript Learning</title>
<script src="app.js" defer></script>

</head>
<body>
<p> Hi </p>
</body>
</html>

+ 1630
- 0
TSLearning/Section 1/package-lock.json
File diff suppressed because it is too large
View File


+ 15
- 0
TSLearning/Section 1/package.json View File

@@ -0,0 +1,15 @@
{
"name": "section-1",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "lite-server"
},
"author": "",
"license": "ISC",
"devDependencies": {
"lite-server": "^2.5.4"
}
}

Loading…
Cancel
Save