We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d396e1 commit 531bc14Copy full SHA for 531bc14
1 file changed
data/typescript.json
@@ -269,6 +269,15 @@
269
"code":"enum Role { ADMIN = 'Admin', READ_ONLY = 300, AUTHOR = 250 }"
270
}
271
]
272
+ },
273
+ {
274
+ "title":"ইউটিলিটি টাইপ",
275
+ "items":[
276
277
+ "definition":"পারশিয়াল বা আংশিক টাইপ",
278
+ "code":"interface Person {\n\tname: string;\n\tage: number;\n\theight: string;\n}\nconst person1:Partial<Person> = {\n\tname: 'Hridoy',\n\tage: 28\n}"
279
+ }
280
+ ]
281
282
283
0 commit comments