This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
111
/
clonedetectiontarget
forked from
wangwei/clonedetectiondemo
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
0
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
上传文件至 ''
typescript文件
master
高级云脑研发工程师
2 years ago
parent
a6f23710eb
commit
b562d043f3
1 changed files
with
11 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-0
person.tsx
+ 11
- 0
person.tsx
View File
@@ -0,0 +1,11 @@
interface IPerson {
name: string;
age: number;
}
function test(opt: IPerson) {
let key: (keyof IPerson);
for (key in opt) {
console.log(opt[key]);
}
}
Write
Preview
Loading…
Cancel
Save