Skip to content

Commit

Permalink
typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
meet49 committed Mar 12, 2024
1 parent 14dcf09 commit a083cc7
Show file tree
Hide file tree
Showing 144 changed files with 633,615 additions and 0 deletions.
11 changes: 11 additions & 0 deletions first-ts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script src="index.js"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions first-ts/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function add(a, b) {
return a + b;
}
const result = add(2, 5);
console.log(result);
6 changes: 6 additions & 0 deletions first-ts/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
function add(a:number,b:number){
return a +b;
}

const result =add(2,5)
console.log(result)
16 changes: 16 additions & 0 deletions first-ts/node_modules/.bin/tsc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions first-ts/node_modules/.bin/tsc.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions first-ts/node_modules/.bin/tsc.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions first-ts/node_modules/.bin/tsserver

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions first-ts/node_modules/.bin/tsserver.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions first-ts/node_modules/.bin/tsserver.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions first-ts/node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 55 additions & 0 deletions first-ts/node_modules/typescript/LICENSE.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 50 additions & 0 deletions first-ts/node_modules/typescript/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 41 additions & 0 deletions first-ts/node_modules/typescript/SECURITY.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a083cc7

Please sign in to comment.