created a new folder for ts and dist for js and a tsconfig file by running command tsc --init

This commit is contained in:
umamahesh.b
2026-08-12 10:34:11 +05:30
parent cee5fb8fe0
commit f9d0cc46ba
6 changed files with 67 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
type user = {
name : string,
email: string,
age: number
}
const mahesh:user = {
name: 'Umamahesh',
email: 'umamahesh.b',
age : 25
}